Changeset 33
- Timestamp:
- 03/29/07 16:51:07 (2 years ago)
- Files:
-
- trunk/pyosg/osg/CameraNode.cpp (modified) (1 diff)
- trunk/pyosg/osg/Vec4ub.cpp (modified) (1 diff)
- trunk/pyosg/osg/osg.cpp (modified) (2 diffs)
- trunk/pyosg/osgProducer/osgProducer.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/pyosg/osg/CameraNode.cpp
r28 r33 9 9 // This software is provided "as is" without express or implied warranty, 10 10 // and with no claim as to its suitability for any purpose. 11 #include <osg/Version> 11 12 #if (OSG_VERSION_MAJOR>=1) 12 13 #include <boost/python/module.hpp> trunk/pyosg/osg/Vec4ub.cpp
r30 r33 9 9 // This software is provided "as is" without express or implied warranty, 10 10 // and with no claim as to its suitability for any purpose. 11 #include <osg/Version> 11 12 #if (OSG_VERSION_MAJOR>=1) 12 13 #include <boost/python/class.hpp> trunk/pyosg/osg/osg.cpp
r24 r33 78 78 void init_Vec3d(); 79 79 void init_Vec4(); 80 #if (OSG_VERSION_MAJOR>=1) 80 81 void init_Vec4ub(); 82 #endif 81 83 void init_Quat(); 82 84 // void init_UByte4(); … … 148 150 void init_CollectOccludersVisitor(); 149 151 void init_PointSprite(); 152 #if (OSG_VERSION_MAJOR>=1) 150 153 void init_CameraNode(); 154 #endif 151 155 void init_Shader(); 152 156 void init_Program(); trunk/pyosg/osgProducer/osgProducer.cpp
r3 r33 22 22 void init_OsgSceneHandler(); 23 23 void init_Viewer(); 24 #if ((OSG_VERSION_MAJOR==1) && (OSG_VERSION_MINOR < 1)) 24 25 void init_EventAdapter(); 26 #endif 25 27 26 28 void __init_osgProducer() … … 33 35 init_OsgCameraGroup(); 34 36 init_Viewer(); 37 #if ((OSG_VERSION_MAJOR==1) && (OSG_VERSION_MINOR < 1)) 35 38 init_EventAdapter(); 39 #endif 36 40 } 37 41 }
