Merge branch 'master' into deploy-ng

This commit is contained in:
rdb 2018-11-04 15:26:58 +01:00
commit 23bb814f3f
11 changed files with 37 additions and 11 deletions

View File

@ -0,0 +1,4 @@
#pragma once
class vrpn_Analog_Remote;
typedef void vrpn_ANALOGCB;

View File

@ -0,0 +1,4 @@
#pragma once
class vrpn_Button_Remote;
typedef void vrpn_BUTTONCB;

View File

@ -0,0 +1,3 @@
#pragma once
#define VRPN_CALLBACK

View File

@ -0,0 +1,3 @@
#pragma once
class vrpn_Connection;

View File

@ -0,0 +1,4 @@
#pragma once
class vrpn_Dial_Remote;
typedef void vrpn_DIALCB;

View File

@ -0,0 +1,6 @@
#pragma once
class vrpn_Tracker_Remote;
typedef void vrpn_TRACKERCB;
typedef void vrpn_TRACKERACCCB;
typedef void vrpn_TRACKERVELCB;

View File

@ -19,6 +19,7 @@
#include "configVariableBool.h"
#include "configVariableEnum.h"
#include "configVariableInt.h"
#include "configVariableString.h"
#include "dconfig.h"
#include "physxEnums.h"

View File

@ -11,12 +11,17 @@
* @date 2010-10-20
*/
#include "webcamVideoOpenCV.h"
#include "webcamVideoCursorOpenCV.h"
#ifdef HAVE_OPENCV
#include "webcamVideoOpenCV.h"
#include "movieVideoCursor.h"
#include "pStatTimer.h"
#include <opencv2/highgui/highgui.hpp>
TypeHandle WebcamVideoCursorOpenCV::_type_handle;
/**

View File

@ -22,6 +22,7 @@
#include "movieVideoCursor.h"
class WebcamVideoOpenCV;
struct CvCapture;
/**
* The Video4Linux implementation of webcams.

View File

@ -11,8 +11,13 @@
* @date 2010-06-11
*/
#include "webcamVideoCursorV4L.h"
#include "config_vision.h"
#include "webcamVideoV4L.h"
#include "movieVideoCursor.h"
#if defined(HAVE_VIDEO4LINUX) && !defined(CPPPARSER)
#include <fcntl.h>

View File

@ -16,16 +16,6 @@
#include "pandabase.h"
#ifdef CPPPARSER
// For correct interrogate parsing of UNC's vrpn library.
#if defined(WIN32_VC) || defined(WIN64_VC)
#define SOCKET int
#else
#define linux
typedef struct timeval timeval;
#endif
#endif
// VPRN misses an include to this in vrpn_Shared.h.
#include <stdint.h>