Tweaked API to get wrappers to build

This commit is contained in:
Robert Osfield
2009-03-09 16:53:57 +00:00
parent f4b7a5b274
commit 99477fa422
2 changed files with 11 additions and 10 deletions

View File

@@ -14,6 +14,7 @@
#ifndef OSGUTIL_GLOBJECTSVISITOR
#define OSGUTIL_GLOBJECTSVISITOR 1
#include <OpenThreads/Mutex>
#include <osg/NodeVisitor>
#include <osg/Geode>
#include <osg/State>
@@ -223,10 +224,10 @@ class OSGUTIL_EXPORT IncrementalCompileOperation : public osg::GraphicsOperation
void add(CompileSet* compileSet, bool callBuildCompileMap=true);
OpenThreads::Mutex& getToCompiledMutex() { return _toCompileMutex; }
OpenThreads::Mutex* getToCompiledMutex() { return &_toCompileMutex; }
CompileSets& getToCompile() { return _compiled; }
OpenThreads::Mutex& getCompiledMutex() { return _compiledMutex; }
OpenThreads::Mutex* getCompiledMutex() { return &_compiledMutex; }
CompileSets& getCompiled() { return _compiled; }
protected: