- Timestamp:
- Mar 7, 2006, 9:18:04 PM (19 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure.ac
r7151 r7194 18 18 # It is quite fragile, and compiling orxonox on different Platforms # 19 19 # is only guarantied, if build with the right config. # 20 # # 21 # You might also have a look at the acinclude.m4, where many macros # 22 # for this configuration files are stored # 20 23 # # 21 24 # be sure to visit us at http://www.orxonox.net # -
trunk/src/lib/graphics/importer/model.cc
r6162 r7194 45 45 */ 46 46 Model::~Model() 47 { 48 // delete what has to be deleted here 49 } 47 { } 50 48 51 49 -
trunk/src/lib/graphics/importer/texture_sequence.h
r6981 r7194 1 1 /*! 2 * @file texture .h3 * @brief Contains the texture class, that handles the reading of Images into Texutre-files.2 * @file texture_sequence.h 3 * @brief Contains the texture_sequence class, that handles the reading of Image-files into multiple Texutres. 4 4 */ 5 5 -
trunk/src/lib/graphics/importer/vertex_array_model.cc
r6771 r7194 116 116 VertexArrayModel::~VertexArrayModel() 117 117 { 118 PRINTF(4)("Deleting VertexArrayModel "); 119 if (this->getName()) 120 { 121 PRINT(4)("%s\n", this->getName()); 122 } 123 else 124 { 125 PRINT(4)("\n"); 126 } 118 PRINTF(4)("Deleting VertexArrayModel %s\n", this->getName()); 127 119 } 128 120
Note: See TracChangeset
for help on using the changeset viewer.