Update of /cvsroot/simspark/simspark/spark/kerosin/textureserver
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv3726
Modified Files:
Tag: projectx
textureserver.h
Log Message:
removed reference to GLServer
Index: textureserver.h
===================================================================
RCS file: /cvsroot/simspark/simspark/spark/kerosin/textureserver/textureserver.h,v
retrieving revision 1.1.2.1.2.2
retrieving revision 1.1.2.1.2.3
diff -C2 -d -r1.1.2.1.2.2 -r1.1.2.1.2.3
*** textureserver.h 1 Jun 2007 13:25:15 -0000 1.1.2.1.2.2
--- textureserver.h 17 Jun 2007 08:26:15 -0000 1.1.2.1.2.3
***************
*** 69,77 ****
virtual ~TextureServer();
- /** retrieve pointer to the OpenGL server ... used by Textures to
- check extensions
- */
- boost::shared_ptr<OpenGLServer> GetOpenGLServer() const;
-
/** load (or returned cached) texture */
boost::shared_ptr<Texture> GetTexture(const std::string &name);
--- 69,72 ----
***************
*** 81,87 ****
virtual void OnLink();
- /** reset OpenGLServer and ImageServer reference */
- // virtual void OnUnlink();
-
//
// members
--- 76,79 ----
***************
*** 90,94 ****
/** reference to the ImageServer */
CachedPath<ImageServer> mImageServer;
!
/** registry of cached textures */
TTextureCache mTextureCache;
--- 82,87 ----
/** reference to the ImageServer */
CachedPath<ImageServer> mImageServer;
! /** reference to the OpenGLServer */
! CachedPath<OpenGLServer> mOpenGLServer;
/** registry of cached textures */
TTextureCache mTextureCache;
|