Changeset 3345 in orxonox.OLD for orxonox/branches/parenting/src/importer
- Timestamp:
- Jan 5, 2005, 6:11:11 PM (20 years ago)
- Location:
- orxonox/branches/parenting/src/importer
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/parenting/src/importer/texture.cc
r3344 r3345 137 137 if (this->texture) 138 138 glDeleteTextures(1, &this->texture); 139 }140 141 /**142 \returns The Texture-identifier number.143 */144 GLuint Texture::getTexture(void)145 {146 return this->texture;147 139 } 148 140 -
orxonox/branches/parenting/src/importer/texture.h
r3344 r3345 72 72 ~Texture(void); 73 73 74 GLuint getTexture(void);74 inline GLuint getTexture(void) {return this->texture;} //!< \returns The textureID of this texture. 75 75 bool loadTexToGL (Image* pImage); 76 76
Note: See TracChangeset
for help on using the changeset viewer.