Compile fix

This commit is contained in:
Robert Osfield 2007-08-09 08:19:58 +00:00
parent 8248b6fac9
commit 9b04594126
2 changed files with 3 additions and 3 deletions

View File

@ -57,7 +57,7 @@ class OSGUTIL_EXPORT CullVisitor : public osg::NodeVisitor, public osg::CullStac
/// Copy constructor that does a shallow copy.
CullVisitor(const CullVisitor&);
/** Create a shallow copy on the CullVisitor.*/
/** Create a shallow copy of the CullVisitor, used by CullVisitor::create() to clone the prototype..*/
virtual CullVisitor* clone() const { return new CullVisitor(*this); }
/** get the prototype singleton used by CullVisitor::create().*/

View File

@ -20,7 +20,7 @@
namespace osgViewer {
class OpenGLQuerySupport
class OSGVIEWER_EXPORT OpenGLQuerySupport
{
public:
OpenGLQuerySupport();
@ -36,7 +36,7 @@ class OpenGLQuerySupport
GLuint createQueryObject();
void beginQuery(int frameNumber);
inline void endQuery();
void endQuery();
void initialize(osg::State* state);
protected: