mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-02 18:03:56 -04:00
fix compilation error on 32-bit Windows with Eigen
This commit is contained in:
parent
87910799b6
commit
3200bb4443
@ -38,6 +38,7 @@
|
|||||||
#include "cullTraverser.h"
|
#include "cullTraverser.h"
|
||||||
#include "callbackObject.h"
|
#include "callbackObject.h"
|
||||||
#include "luse.h"
|
#include "luse.h"
|
||||||
|
#include "epvector.h"
|
||||||
|
|
||||||
class GraphicsOutput;
|
class GraphicsOutput;
|
||||||
class GraphicsPipe;
|
class GraphicsPipe;
|
||||||
@ -172,7 +173,7 @@ public:
|
|||||||
LVecBase4i _pixels;
|
LVecBase4i _pixels;
|
||||||
LVecBase4i _pixels_i;
|
LVecBase4i _pixels_i;
|
||||||
};
|
};
|
||||||
typedef pvector<Region> Regions;
|
typedef epvector<Region> Regions;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
class CData;
|
class CData;
|
||||||
@ -214,10 +215,10 @@ private:
|
|||||||
Regions _regions;
|
Regions _regions;
|
||||||
|
|
||||||
int _lens_index; // index into which lens of a camera is associated with this display region. 0 is default
|
int _lens_index; // index into which lens of a camera is associated with this display region. 0 is default
|
||||||
|
|
||||||
NodePath _camera;
|
NodePath _camera;
|
||||||
Camera *_camera_node;
|
Camera *_camera_node;
|
||||||
|
|
||||||
bool _active;
|
bool _active;
|
||||||
int _sort;
|
int _sort;
|
||||||
Lens::StereoChannel _stereo_channel;
|
Lens::StereoChannel _stereo_channel;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user