Update of /cvsroot/simspark/simspark/spark/kerosin/textureserver
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv15657
Modified Files:
Tag: WIN32
texture.h
Log Message:
- included openglwrapper
- changed the texture handle from uint to GLuint
Index: texture.h
===================================================================
RCS file: /cvsroot/simspark/simspark/spark/kerosin/textureserver/texture.h,v
retrieving revision 1.1.2.1
retrieving revision 1.1.2.2
diff -C2 -d -r1.1.2.1 -r1.1.2.2
*** texture.h 16 Feb 2007 15:40:49 -0000 1.1.2.1
--- texture.h 28 Feb 2007 04:21:06 -0000 1.1.2.2
***************
*** 25,28 ****
--- 25,29 ----
#include <boost/weak_ptr.hpp>
#include <boost/shared_ptr.hpp>
+ #include <kerosin/openglserver/openglwrapper.h>
namespace kerosin
***************
*** 95,99 ****
protected:
//! OpenGL texture handle
! unsigned int mTexID;
//! width of texture
--- 96,100 ----
protected:
//! OpenGL texture handle
! GLuint mTexID;
//! width of texture
|