Changeset 7700 in orxonox.OLD for branches/water/src/lib/graphics/importer/texture.h
- Timestamp:
- May 18, 2006, 5:05:45 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/water/src/lib/graphics/importer/texture.h
r7687 r7700 18 18 { 19 19 public: 20 Texture(const std::string& imageName = "", GLenum target = GL_TEXTURE_2D); 20 Texture(GLenum target = GL_TEXTURE_2D); 21 Texture(const std::string& imageName, GLenum target = GL_TEXTURE_2D); 21 22 Texture(SDL_Surface* surface, GLenum target = GL_TEXTURE_2D); 22 23 virtual ~Texture(); … … 50 51 private: 51 52 void init(); 53 static void generateTexture(GLuint& texture, GLenum target); 52 54 53 55 private:
Note: See TracChangeset
for help on using the changeset viewer.