Added osgVolume to docs and wrappers
This commit is contained in:
parent
6ea2adf1f5
commit
d57ad27fcc
@ -17,7 +17,7 @@
|
||||
# The PROJECT_NAME tag is a single word (or a sequence of words surrounded
|
||||
# by quotes) that should identify the project.
|
||||
|
||||
PROJECT_NAME = "Open Scene Graph"
|
||||
PROJECT_NAME = "OpenSceneGraph"
|
||||
|
||||
# The PROJECT_NUMBER tag can be used to enter a project or revision number.
|
||||
# This could be handy for archiving the generated documentation or
|
||||
|
@ -17,7 +17,7 @@
|
||||
# The PROJECT_NAME tag is a single word (or a sequence of words surrounded
|
||||
# by quotes) that should identify the project.
|
||||
|
||||
PROJECT_NAME = "Open Scene Graph"
|
||||
PROJECT_NAME = "OpenSceneGraph"
|
||||
|
||||
# The PROJECT_NUMBER tag can be used to enter a project or revision number.
|
||||
# This could be handy for archiving the generated documentation or
|
||||
@ -324,6 +324,7 @@ INPUT = $(OSGHOME)/include/osg \
|
||||
$(OSGHOME)/include/osgParticle \
|
||||
$(OSGHOME)/include/osgViewer \
|
||||
$(OSGHOME)/include/osgWidget \
|
||||
$(OSGHOME)/include/osgVolume \
|
||||
$(OSGHOME)/include/osgShadow \
|
||||
$(OSGHOME)/include/osgManipulator \
|
||||
$(OSGHOME)/include/osgSim \
|
||||
|
@ -399,6 +399,7 @@ INPUT = $(OSGHOME)/include/osg \
|
||||
$(OSGHOME)/include/osgParticle \
|
||||
$(OSGHOME)/include/osgViewer \
|
||||
$(OSGHOME)/include/osgWidget \
|
||||
$(OSGHOME)/include/osgVolume \
|
||||
$(OSGHOME)/include/osgManipulator \
|
||||
$(OSGHOME)/include/osgShadow \
|
||||
$(OSGHOME)/include/osgSim \
|
||||
|
@ -1,6 +1,6 @@
|
||||
<hr>
|
||||
<address><small>Generated at $datetime for the <a href="http://www.openscenegraph.org/">OpenSceneGraph</a>
|
||||
by <a href="http://www.doxygen.org">doxygen</a> $doxygenversion.</small></address>
|
||||
<!-- Dimitri van Heesch's e-mail address removed, lest he get messages on the Open Scene Graph -->
|
||||
<!-- Dimitri van Heesch's e-mail address removed, lest he get messages on the OpenSceneGraph -->
|
||||
</body>
|
||||
</html>
|
||||
|
@ -557,6 +557,7 @@ INPUT = "${OpenSceneGraph_SOURCE_DIR}/include/osg" \
|
||||
"${OpenSceneGraph_SOURCE_DIR}/include/osgText" \
|
||||
"${OpenSceneGraph_SOURCE_DIR}/include/osgUtil" \
|
||||
"${OpenSceneGraph_SOURCE_DIR}/include/osgViewer" \
|
||||
"${OpenSceneGraph_SOURCE_DIR}/include/osgVolume" \
|
||||
"${OpenSceneGraph_SOURCE_DIR}/include/osgWidget"
|
||||
|
||||
# This tag can be used to specify the character encoding of the source files
|
||||
|
@ -123,16 +123,18 @@ SET(OSGWRAPPER_LIB_LIST
|
||||
OpenThreads
|
||||
osg
|
||||
osgDB
|
||||
osgUtil
|
||||
osgGA
|
||||
osgText
|
||||
osgParticle
|
||||
osgFX
|
||||
osgSim
|
||||
osgGA
|
||||
osgManipulator
|
||||
osgParticle
|
||||
osgShadow
|
||||
osgSim
|
||||
osgTerrain
|
||||
osgText
|
||||
osgUtil
|
||||
osgViewer
|
||||
osgVolume
|
||||
osgWidget
|
||||
)
|
||||
|
||||
|
||||
|
@ -635,6 +635,16 @@ BEGIN_OBJECT_REFLECTOR(osg::Geometry)
|
||||
__void__copyToAndOptimize__Geometry_R1,
|
||||
"",
|
||||
"");
|
||||
I_Method0(bool, containsSharedArrays,
|
||||
Properties::NON_VIRTUAL,
|
||||
__bool__containsSharedArrays,
|
||||
"",
|
||||
"");
|
||||
I_Method0(void, duplicateSharedArrays,
|
||||
Properties::NON_VIRTUAL,
|
||||
__void__duplicateSharedArrays,
|
||||
"",
|
||||
"");
|
||||
I_Method0(void, computeInternalOptimizedGeometry,
|
||||
Properties::NON_VIRTUAL,
|
||||
__void__computeInternalOptimizedGeometry,
|
||||
|
@ -980,11 +980,6 @@ BEGIN_OBJECT_REFLECTOR(osgTerrain::SwitchLayer)
|
||||
__C5_char_P1__className,
|
||||
"return the name of the object's class type. ",
|
||||
"Must be defined by derived classes. ");
|
||||
I_Method0(void, clear,
|
||||
Properties::NON_VIRTUAL,
|
||||
__void__clear,
|
||||
"",
|
||||
"");
|
||||
I_Method1(void, setActiveLayer, IN, int, i,
|
||||
Properties::NON_VIRTUAL,
|
||||
__void__setActiveLayer__int,
|
||||
|
22
src/osgWrappers/osgVolume/Export.cpp
Normal file
22
src/osgWrappers/osgVolume/Export.cpp
Normal file
@ -0,0 +1,22 @@
|
||||
// ***************************************************************************
|
||||
//
|
||||
// Generated automatically by genwrapper.
|
||||
// Please DO NOT EDIT this file!
|
||||
//
|
||||
// ***************************************************************************
|
||||
|
||||
#include <osgIntrospection/ReflectionMacros>
|
||||
#include <osgIntrospection/TypedMethodInfo>
|
||||
#include <osgIntrospection/StaticMethodInfo>
|
||||
#include <osgIntrospection/Attributes>
|
||||
|
||||
#include <osgVolume/Export>
|
||||
|
||||
// Must undefine IN and OUT macros defined in Windows headers
|
||||
#ifdef IN
|
||||
#undef IN
|
||||
#endif
|
||||
#ifdef OUT
|
||||
#undef OUT
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user