Updated wrappers and version numbers for 1.9.4 dev release
This commit is contained in:
@@ -16,7 +16,7 @@ PROJECT(OpenSceneGraph)
|
||||
|
||||
SET(OPENSCENEGRAPH_MAJOR_VERSION 1)
|
||||
SET(OPENSCENEGRAPH_MINOR_VERSION 9)
|
||||
SET(OPENSCENEGRAPH_PATCH_VERSION 3)
|
||||
SET(OPENSCENEGRAPH_PATCH_VERSION 4)
|
||||
|
||||
SET(OpenThreads_SOURCE_DIR ${OpenSceneGraph_SOURCE_DIR})
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ extern "C" {
|
||||
|
||||
#define OSG_VERSION_MAJOR 1
|
||||
#define OSG_VERSION_MINOR 9
|
||||
#define OSG_VERSION_RELEASE 3
|
||||
#define OSG_VERSION_PATCH 4
|
||||
|
||||
#define OSG_VERSION_RELEASE OSG_VERSION_PATCH
|
||||
#define OSG_VERSION_REVISION 0
|
||||
|
||||
/**
|
||||
|
||||
@@ -60,7 +60,7 @@ BEGIN_OBJECT_REFLECTOR(osgTerrain::GeometryTechnique)
|
||||
I_Method0(void, dirty,
|
||||
Properties::VIRTUAL,
|
||||
__void__dirty,
|
||||
"Dirty so that cached data structurese are updated. ",
|
||||
"Dirty so that cached data structurese will be updated on next use. ",
|
||||
"");
|
||||
END_REFLECTOR
|
||||
|
||||
|
||||
@@ -77,6 +77,11 @@ BEGIN_OBJECT_REFLECTOR(osgTerrain::TerrainNode)
|
||||
__void__traverse__osg_NodeVisitor_R1,
|
||||
"Traverse downwards : calls children's accept method with NodeVisitor. ",
|
||||
"");
|
||||
I_Method0(void, init,
|
||||
Properties::NON_VIRTUAL,
|
||||
__void__init,
|
||||
"Call init on any attached TerrainTechnique. ",
|
||||
"");
|
||||
I_Method1(void, setTerrainTechnique, IN, osgTerrain::TerrainTechnique *, TerrainTechnique,
|
||||
Properties::NON_VIRTUAL,
|
||||
__void__setTerrainTechnique__osgTerrain_TerrainTechnique_P1,
|
||||
@@ -170,13 +175,23 @@ BEGIN_OBJECT_REFLECTOR(osgTerrain::TerrainNode)
|
||||
I_Method1(void, setRequiresNormals, IN, bool, flag,
|
||||
Properties::NON_VIRTUAL,
|
||||
__void__setRequiresNormals__bool,
|
||||
"Set whether the TerrainTechnique should create per vertex normals for lighting purposes. ",
|
||||
"Set hint to whether the TerrainTechnique should create per vertex normals for lighting purposes. ",
|
||||
"");
|
||||
I_Method0(bool, getRequiresNormals,
|
||||
Properties::NON_VIRTUAL,
|
||||
__bool__getRequiresNormals,
|
||||
"Get whether the TerrainTechnique should create per vertex normals for lighting purposes. ",
|
||||
"");
|
||||
I_Method1(void, setTreatBoundariesToValidDataAsDefaultValue, IN, bool, flag,
|
||||
Properties::NON_VIRTUAL,
|
||||
__void__setTreatBoundariesToValidDataAsDefaultValue__bool,
|
||||
"Set the hint to whether the TerrainTechnique should treat the invalid Layer entries that at are neigbours to valid entries with the default value. ",
|
||||
"");
|
||||
I_Method0(bool, getTreatBoundariesToValidDataAsDefaultValue,
|
||||
Properties::NON_VIRTUAL,
|
||||
__bool__getTreatBoundariesToValidDataAsDefaultValue,
|
||||
"Get whether the TeatBoundariesToValidDataAsDefaultValue hint. ",
|
||||
"");
|
||||
I_Method0(osg::BoundingSphere, computeBound,
|
||||
Properties::VIRTUAL,
|
||||
__osg_BoundingSphere__computeBound,
|
||||
@@ -209,5 +224,8 @@ BEGIN_OBJECT_REFLECTOR(osgTerrain::TerrainNode)
|
||||
I_SimpleProperty(osgTerrain::TerrainTechnique *, TerrainTechnique,
|
||||
__TerrainTechnique_P1__getTerrainTechnique,
|
||||
__void__setTerrainTechnique__osgTerrain_TerrainTechnique_P1);
|
||||
I_SimpleProperty(bool, TreatBoundariesToValidDataAsDefaultValue,
|
||||
__bool__getTreatBoundariesToValidDataAsDefaultValue,
|
||||
__void__setTreatBoundariesToValidDataAsDefaultValue__bool);
|
||||
END_REFLECTOR
|
||||
|
||||
|
||||
@@ -98,7 +98,12 @@ BEGIN_OBJECT_REFLECTOR(osgTerrain::TerrainTechnique)
|
||||
I_Method0(void, dirty,
|
||||
Properties::VIRTUAL,
|
||||
__void__dirty,
|
||||
"Dirty so that cached data structurese are updated. ",
|
||||
"Dirty so that cached data structurese will be updated on next use. ",
|
||||
"");
|
||||
I_Method0(bool, isDirty,
|
||||
Properties::VIRTUAL,
|
||||
__bool__isDirty,
|
||||
"Return true if cached data structurese need updating. ",
|
||||
"");
|
||||
I_SimpleProperty(osgTerrain::TerrainNode *, TerrainNode,
|
||||
__TerrainNode_P1__getTerrainNode,
|
||||
|
||||
Reference in New Issue
Block a user