Changeset 3094 in orxonox.OLD for orxonox/branches/images/importer/material.h
- Timestamp:
- Dec 5, 2004, 1:55:40 AM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/images/importer/material.h
r3093 r3094 61 61 { 62 62 int rowSpan; 63 unsigned long sizeX; 64 unsigned long sizeY; 63 GLuint width; 64 GLuint height; 65 GLuint bpp; 66 GLuint type; 65 67 GLubyte *data; 66 68 }; … … 86 88 87 89 // TEXTURING 90 bool loadTexToGL (Image* pImage, GLuint* texture); 91 88 92 bool loadImage(char* imageName, GLuint* texture); 89 93 … … 93 97 void decodeJPG(jpeg_decompress_struct* cinfo, Image *pImageData); 94 98 95 bool loadTexToGL (Image* pImage, GLuint* texture); 99 /// TGA /// 100 101 bool loadTGA(const char * tgaName, GLuint* texture); 102 bool loadUncompressedTGA(const char * filename, FILE * fTGA, GLuint* texture); 103 // bool LoadCompressedTGA(const char * filename, FILE * fTGA, GLuint* texture); 104 96 105 }; 97 106 #endif
Note: See TracChangeset
for help on using the changeset viewer.