Updated wrappers

This commit is contained in:
Robert Osfield 2008-06-18 11:51:22 +00:00
parent dd137c2442
commit b82e24b08d
2 changed files with 14 additions and 0 deletions

View File

@ -10,6 +10,7 @@
#include <osgIntrospection/StaticMethodInfo> #include <osgIntrospection/StaticMethodInfo>
#include <osgIntrospection/Attributes> #include <osgIntrospection/Attributes>
#include <osg/BoundingBox>
#include <osg/CopyOp> #include <osg/CopyOp>
#include <osg/Drawable> #include <osg/Drawable>
#include <osg/Object> #include <osg/Object>
@ -143,6 +144,11 @@ BEGIN_OBJECT_REFLECTOR(osgText::Text3D)
__void__releaseGLObjects__osg_State_P1, __void__releaseGLObjects__osg_State_P1,
"If State is non-zero, this function releases OpenGL objects for the specified graphics context. ", "If State is non-zero, this function releases OpenGL objects for the specified graphics context. ",
"Otherwise, releases OpenGL objexts for all graphics contexts. "); "Otherwise, releases OpenGL objexts for all graphics contexts. ");
I_Method0(osg::BoundingBox, computeBound,
Properties::VIRTUAL,
__osg_BoundingBox__computeBound,
"Compute the bounding box around Drawables's geometry. ",
"");
I_ProtectedMethod1(void, renderPerGlyph, IN, osg::State &, state, I_ProtectedMethod1(void, renderPerGlyph, IN, osg::State &, state,
Properties::NON_VIRTUAL, Properties::NON_VIRTUAL,
Properties::CONST, Properties::CONST,

View File

@ -177,6 +177,11 @@ BEGIN_OBJECT_REFLECTOR(osgViewer::RecordCameraPathHandler)
__int__getKeyEventTogglePlayback, __int__getKeyEventTogglePlayback,
"", "",
""); "");
I_MethodWithDefaults1(void, setAutoIncrementFilename, IN, bool, autoinc, true,
Properties::NON_VIRTUAL,
__void__setAutoIncrementFilename__bool,
"",
"");
I_Method1(void, getUsage, IN, osg::ApplicationUsage &, usage, I_Method1(void, getUsage, IN, osg::ApplicationUsage &, usage,
Properties::VIRTUAL, Properties::VIRTUAL,
__void__getUsage__osg_ApplicationUsage_R1, __void__getUsage__osg_ApplicationUsage_R1,
@ -187,6 +192,9 @@ BEGIN_OBJECT_REFLECTOR(osgViewer::RecordCameraPathHandler)
__bool__handle__C5_osgGA_GUIEventAdapter_R1__osgGA_GUIActionAdapter_R1, __bool__handle__C5_osgGA_GUIEventAdapter_R1__osgGA_GUIActionAdapter_R1,
"Deprecated, Handle events, return true if handled, false otherwise. ", "Deprecated, Handle events, return true if handled, false otherwise. ",
""); "");
I_SimpleProperty(bool, AutoIncrementFilename,
0,
__void__setAutoIncrementFilename__bool);
I_SimpleProperty(int, KeyEventTogglePlayback, I_SimpleProperty(int, KeyEventTogglePlayback,
__int__getKeyEventTogglePlayback, __int__getKeyEventTogglePlayback,
__void__setKeyEventTogglePlayback__int); __void__setKeyEventTogglePlayback__int);