source: GTP/branches/IllumWPdeliver2008dec/IlluminationWP/demos/Standalone/Hierarchical Systems Demo [OpenGL]/RESOURCES/include/My3DGraphRes/Texture.h @ 3255

Revision 3255, 398 bytes checked in by szirmay, 15 years ago (diff)
Line 
1#pragma once
2
3//#include <GL/gl.h>
4#include <includes.h>
5
6
7class Texture
8{
9public:
10        Texture(void);         
11        ~Texture(void);
12
13        void LoadImage(void);
14        GLuint getTextureHandler(){return m_TextureHandler;}
15        void setTextureHandler(GLuint handler){m_TextureHandler=handler;}
16        void setFilename(char* filename){m_Filename=filename;}
17
18private:
19        GLuint m_TextureHandler;
20        char* m_Filename;
21};
Note: See TracBrowser for help on using the repository browser.