Warning fixes for Win32.

This commit is contained in:
Robert Osfield
2003-09-16 19:56:19 +00:00
parent 96388cee67
commit c342b29a04
6 changed files with 10 additions and 8 deletions

View File

@@ -16,6 +16,8 @@
#include <OpenThreads/Mutex>
#include <osgProducer/Export> // To disable MSVC warnings
#include <Producer/RenderSurface> // For definition of KeySymbol
#include <Producer/KeyboardMouse>

View File

@@ -122,10 +122,10 @@ class Statistics : public osg::Drawable::PrimitiveFunctor
}
virtual void vertex(float,float,float) { vertex(); }
virtual void vertex(const osg::Vec3&) { vertex(); }
virtual void vertex(const osg::Vec2& vert) { vertex(); }
virtual void vertex(const osg::Vec4& vert) { vertex(); }
virtual void vertex(float x,float y) { vertex(); }
virtual void vertex(float x,float y,float z,float w) { vertex(); }
virtual void vertex(const osg::Vec2&) { vertex(); }
virtual void vertex(const osg::Vec4&) { vertex(); }
virtual void vertex(float,float) { vertex(); }
virtual void vertex(float,float,float,float) { vertex(); }
virtual void end()
{