Changeset 5427 in orxonox.OLD for trunk/src/lib/graphics
- Timestamp:
- Oct 24, 2005, 6:06:06 PM (19 years ago)
- Location:
- trunk/src/lib/graphics
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/graphics/importer/abstract_model.h
r5280 r5427 22 22 #define _ABSTRACT_MODEL_H 23 23 24 #include "stdincl.h"25 24 #include "base_object.h" 26 25 … … 42 41 typedef struct 43 42 { 44 bytev[3]; //!< the vector of the vertex43 char v[3]; //!< the vector of the vertex 45 44 unsigned char lightNormalIndex; //!< the index of the light normal 46 45 } sVertex; -
trunk/src/lib/graphics/importer/model.cc
r5390 r5427 20 20 #include "model.h" 21 21 22 #include "stdlibincl.h" 22 23 #include <math.h> 24 23 25 #include <stdarg.h> 24 26 -
trunk/src/lib/graphics/spatial_separation/quadtree_node.cc
r5233 r5427 18 18 #include "quadtree_node.h" 19 19 20 #include "glincl.h" 20 21 #include "quadtree.h" 21 22 #include "material.h" -
trunk/src/lib/graphics/spatial_separation/spatial_separation.cc
r5075 r5427 21 21 #include "quadtree.h" 22 22 #include "debug.h" 23 #include "compiler.h" 23 24 24 25 using namespace std; -
trunk/src/lib/graphics/text_engine/font.cc
r5420 r5427 27 27 28 28 #include "debug.h" 29 #include "stdlibincl.h" 29 30 #include "compiler.h" 30 31 -
trunk/src/lib/graphics/text_engine/text.h
r5421 r5427 24 24 // FORWARD DECLARATION 25 25 class Font; 26 struct SDL_Surface; 26 27 27 28 /**
Note: See TracChangeset
for help on using the changeset viewer.