diff --git a/src/osgWrappers/osg/Camera.cpp b/src/osgWrappers/osg/Camera.cpp index ff89298e3..ec11f850f 100644 --- a/src/osgWrappers/osg/Camera.cpp +++ b/src/osgWrappers/osg/Camera.cpp @@ -78,6 +78,7 @@ BEGIN_ENUM_REFLECTOR(osg::Camera::BufferComponent) I_DeclaringFile("osg/Camera"); I_EnumLabel(osg::Camera::DEPTH_BUFFER); I_EnumLabel(osg::Camera::STENCIL_BUFFER); + I_EnumLabel(osg::Camera::PACKED_DEPTH_STENCIL_BUFFER); I_EnumLabel(osg::Camera::COLOR_BUFFER); I_EnumLabel(osg::Camera::COLOR_BUFFER0); I_EnumLabel(osg::Camera::COLOR_BUFFER1); diff --git a/src/osgWrappers/osg/FrameBufferObject.cpp b/src/osgWrappers/osg/FrameBufferObject.cpp index 218cfb28a..93d280072 100644 --- a/src/osgWrappers/osg/FrameBufferObject.cpp +++ b/src/osgWrappers/osg/FrameBufferObject.cpp @@ -84,6 +84,11 @@ BEGIN_OBJECT_REFLECTOR(osg::FBOExtensions) __bool__isMultisampleCoverageSupported, "", ""); + I_Method0(bool, isPackedDepthStencilSupported, + Properties::NON_VIRTUAL, + __bool__isPackedDepthStencilSupported, + "", + ""); I_StaticMethod2(osg::FBOExtensions *, instance, IN, unsigned, contextID, IN, bool, createIfNotInitalized, __FBOExtensions_P1__instance__unsigned__bool_S, "",