Updated wrappers

This commit is contained in:
Robert Osfield
2005-11-08 14:03:00 +00:00
parent 6ed9cb40cc
commit 8922bde081
8 changed files with 8 additions and 7 deletions

View File

@@ -13,7 +13,7 @@ CXXFILES =\
Technique.cpp\
Validator.cpp\
LIBS += -losgFX -losg -losgIntrospection $(GL_LIBS) $(OTHER_LIBS)
LIBS += -losgFX -losg -losgIntrospection -losgUtil -losgDB $(GL_LIBS) $(OTHER_LIBS)
OPTF = -O

View File

@@ -19,7 +19,7 @@ CXXFILES =\
TrackballManipulator.cpp\
UFOManipulator.cpp\
LIBS += -losgGA -losg -losgIntrospection $(GL_LIBS) $(OTHER_LIBS)
LIBS += -losgGA -losg -losgIntrospection -losgUtil $(GL_LIBS) $(OTHER_LIBS)
OPTF = -O

View File

@@ -39,7 +39,7 @@ CXXFILES =\
VariableRateCounter.cpp\
range.cpp\
LIBS += -losgParticle -losg -losgIntrospection $(GL_LIBS) $(OTHER_LIBS)
LIBS += -losgParticle -losg -losgIntrospection -losgUtil -losgDB $(GL_LIBS) $(OTHER_LIBS)
OPTF = -O

View File

@@ -10,7 +10,7 @@ CXXFILES =\
Viewer.cpp\
ViewerEventHandler.cpp\
LIBS += -losgProducer -losg -losgIntrospection $(GL_LIBS) $(OTHER_LIBS)
LIBS += -losgProducer -losg -losgIntrospection -losgUtil -losgDB -lProducer -losgGA -losgText $(GL_LIBS) $(OTHER_LIBS)
OPTF = -O

View File

@@ -20,7 +20,7 @@ CXXFILES =\
SphereSegment.cpp\
VisibilityGroup.cpp\
LIBS += -losgSim -losg -losgIntrospection $(GL_LIBS) $(OTHER_LIBS)
LIBS += -losgSim -losg -losgIntrospection -losgUtil -losgText -losgDB $(GL_LIBS) $(OTHER_LIBS)
OPTF = -O

View File

@@ -6,7 +6,7 @@ CXXFILES =\
HeightFieldNode.cpp\
HeightFieldRenderer.cpp\
LIBS += -losgTerrain -losg -losgIntrospection $(GL_LIBS) $(OTHER_LIBS)
LIBS += -losgTerrain -losg -losgIntrospection -losgDB -losgUtil -losgFX $(GL_LIBS) $(OTHER_LIBS)
OPTF = -O

View File

@@ -7,7 +7,7 @@ CXXFILES =\
String.cpp\
Text.cpp\
LIBS += -losgText -losg -losgIntrospection $(GL_LIBS) $(OTHER_LIBS)
LIBS += -losgText -losg -losgIntrospection -losgDB $(GL_LIBS) $(OTHER_LIBS)
OPTF = -O

View File

@@ -95,6 +95,7 @@ BEGIN_OBJECT_REFLECTOR(osgUtil::RenderStage)
I_Method2(void, addPositionedAttribute, IN, osg::RefMatrix *, matrix, IN, const osg::StateAttribute *, attr);
I_Method3(void, addPositionedTextureAttribute, IN, unsigned int, textureUnit, IN, osg::RefMatrix *, matrix, IN, const osg::StateAttribute *, attr);
I_Method1(void, copyTexture, IN, osg::State &, state);
I_Method0(void, sort);
I_Method2(void, drawPreRenderStages, IN, osg::State &, state, IN, osgUtil::RenderLeaf *&, previous);
I_Method2(void, draw, IN, osg::State &, state, IN, osgUtil::RenderLeaf *&, previous);
I_Method3(void, drawInner, IN, osg::State &, state, IN, osgUtil::RenderLeaf *&, previous, IN, bool &, doCopyTexture);