Changeset 10924 for OpenSceneGraph/trunk/src/osgWrappers/osg/Image.cpp
- Timestamp:
- 01/07/10 13:14:47 (3 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/src/osgWrappers/osg/Image.cpp
r10876 r10924 17 17 #include <osg/NodeVisitor> 18 18 #include <osg/Object> 19 #include <osg/StateAttribute> 19 20 #include <osg/Vec2> 20 21 #include <osg/Vec3> … … 376 377 "Get the const PixelBufferObject. ", 377 378 ""); 379 I_Method0(bool, requiresUpdateCall, 380 Properties::VIRTUAL, 381 __bool__requiresUpdateCall, 382 "return whether the update(NodeVisitor* nv) should be required on each frame to enable proper working of osg::Image. ", 383 ""); 378 384 I_Method1(void, update, IN, osg::NodeVisitor *, x, 379 385 Properties::VIRTUAL, 380 386 __void__update__NodeVisitor_P1, 381 " ",387 "update method for osg::Image subclasses that update themselves during the update traversal. ", 382 388 ""); 383 389 I_Method3(bool, sendPointerEvent, IN, int, x, IN, int, x, IN, int, x, … … 499 505 END_REFLECTOR 500 506 507 BEGIN_OBJECT_REFLECTOR(osg::Image::UpdateCallback) 508 I_DeclaringFile("osg/Image"); 509 I_BaseType(osg::StateAttributeCallback); 510 I_Constructor0(____UpdateCallback, 511 "", 512 ""); 513 END_REFLECTOR 514 501 515 STD_VECTOR_REFLECTOR(std::vector< unsigned int >) 502 516
