Changeset 4370 in orxonox.OLD for orxonox/trunk/src/lib/graphics/importer/texture.cc
- Timestamp:
- May 28, 2005, 4:20:02 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/lib/graphics/importer/texture.cc
r4357 r4370 44 44 glDeleteTextures(1, &this->texture); 45 45 } 46 47 /**48 \brief a Simple function that switches two char values49 \param a The first value50 \param b The second value51 */52 void Texture::swap (unsigned char &a, unsigned char &b)53 {54 unsigned char temp;55 temp = a;56 a = b;57 b = temp;58 }59 60 46 61 47 /**
Note: See TracChangeset
for help on using the changeset viewer.