From 4dff461b1c7616ca73cb7d4c3aacf5f5e16b8872 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Wed, 28 Jun 2006 14:36:28 +0000 Subject: [PATCH] Change internal variables across to being GLuint. --- src/osgPlugins/bsp/ReaderWriterQ3BSP.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/osgPlugins/bsp/ReaderWriterQ3BSP.cpp b/src/osgPlugins/bsp/ReaderWriterQ3BSP.cpp index bb68873ea..f05720c6c 100644 --- a/src/osgPlugins/bsp/ReaderWriterQ3BSP.cpp +++ b/src/osgPlugins/bsp/ReaderWriterQ3BSP.cpp @@ -39,7 +39,7 @@ public: private: osg::Geode* convertFromBSP(BSPLoad& aLoadData,const osgDB::ReaderWriter::Options* options) const; osg::Geometry* createMeshFace(const BSP_LOAD_FACE& aLoadFace,const std::vector& aTextureArray, - osg::Vec3Array& aVertexArray,std::vector& aIndices, + osg::Vec3Array& aVertexArray,std::vector& aIndices, osg::Vec2Array& aTextureDecalCoords,osg::Vec2Array& aTextureLMapCoords ) const; osg::Geometry* createPolygonFace(const BSP_LOAD_FACE& aLoadFace,const std::vector& aTextureArray,const std::vector& aTextureLMapArray, @@ -354,7 +354,7 @@ osg::Geode* ReaderWriterQ3BSP::convertFromBSP(BSPLoad& aLoadData,const osgDB::Re osg::Geometry* ReaderWriterQ3BSP::createMeshFace( const BSP_LOAD_FACE& aLoadFace,const std::vector& aTextureArray, - osg::Vec3Array& aVertexArray,std::vector& aIndices, + osg::Vec3Array& aVertexArray,std::vector& aIndices, osg::Vec2Array& aTextureDecalCoords,osg::Vec2Array& aTextureLMapCoords ) const {