Changeset 9727 in orxonox.OLD for branches/new_class_id/src/lib/graphics
- Timestamp:
- Sep 14, 2006, 5:24:31 PM (18 years ago)
- Location:
- branches/new_class_id/src/lib/graphics
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/new_class_id/src/lib/graphics/effects/atmospheric_engine.cc
r9715 r9727 20 20 #include "effects/fog_effect.h" 21 21 22 #include "util/loading/load_param .h"22 #include "util/loading/load_param_xml.h" 23 23 #include "util/loading/factory.h" 24 24 -
branches/new_class_id/src/lib/graphics/effects/lense_flare.cc
r9716 r9727 27 27 #include "light.h" 28 28 #include "state.h" 29 #include "debug.h" 29 30 30 31 #include "render2D/image_plane.h" -
branches/new_class_id/src/lib/graphics/effects/volfog_effect.cc
r9716 r9727 23 23 #include "glincl.h" 24 24 //#include "shell_command.h" 25 #include "debug.h" 26 25 27 26 28 #define GLX_GLXEXT_PROTOTYPES -
branches/new_class_id/src/lib/graphics/graphics_engine.cc
r9715 r9727 40 40 41 41 #include "shell_command.h" 42 42 #include "loading/load_param_xml.h" 43 43 44 44 #include "parser/tinyxml/tinyxml.h" … … 118 118 { 119 119 LoadParamXML(root, "GraphicsEffect", this, GraphicsEngine, loadGraphicsEffects) 120 .describe("loads a graphics effect");120 .describe("loads a graphics effect"); 121 121 } 122 122 -
branches/new_class_id/src/lib/graphics/light.cc
r9716 r9727 22 22 #include "glincl.h" 23 23 #include "vector.h" 24 #include "parser/tinyxml/tinyxml.h" 25 #include "util/loading/load_param.h" 24 #include "util/loading/load_param_xml.h" 26 25 #include "util/loading/factory.h" 27 26 #include "debug.h" … … 265 264 void LightManager::loadParams(const TiXmlElement* root) 266 265 { 266 printf("Loading Lights\n"); 267 267 LoadParamXML(root, "Lights", this, LightManager, loadLights) 268 268 .describe("an XML-Element to load lights from."); … … 277 277 void LightManager::loadLights(const TiXmlElement* root) 278 278 { 279 printf("Loading single Lights\n"); 280 279 281 const TiXmlElement* element = root->FirstChildElement(); 280 282 -
branches/new_class_id/src/lib/graphics/render2D/element_2d.cc
r9715 r9727 31 31 32 32 #include "color.h" 33 33 #include "debug.h" 34 34 #include "shell_command.h" 35 35 36 SHELL_COMMAND(debug, Element2D, debug2D); 36 37
Note: See TracChangeset
for help on using the changeset viewer.