Changeset 7913 in orxonox.OLD for branches/gui
- Timestamp:
- May 27, 2006, 9:31:48 PM (19 years ago)
- Location:
- branches/gui/src
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/gui/src/lib/graphics/graphics_engine.cc
r7910 r7913 573 573 void GraphicsEngine::drawBackgroundElements() const 574 574 { 575 GraphicsEngine::storeMatrices(); 576 575 577 Render2D::getInstance()->draw(E2D_LAYER_BELOW_ALL, E2D_LAYER_BELOW_ALL); 576 578 } -
branches/gui/src/lib/graphics/render2D/element_2d.cc
r7876 r7913 1107 1107 if (level == 0) 1108 1108 glPopAttrib(); 1109 1110 1109 } 1111 1110 -
branches/gui/src/lib/gui/gl_gui/glmenu/glmenu_imagescreen.cc
r7221 r7913 240 240 glEnd(); 241 241 242 glDisable(GL_TEXTURE_2D);243 242 /* draw white border */ 244 243 glBegin(GL_LINE_LOOP); -
branches/gui/src/story_entities/game_world.cc
r7910 r7913 523 523 GraphicsEngine* engine = GraphicsEngine::getInstance(); 524 524 525 525 526 AtmosphericEngine::getInstance()->draw(); 527 528 //glEnable(GL_DEPTH_TEST); 529 //glEnable(GL_LIGHTING); 526 530 527 531 // set camera -
branches/gui/src/story_entities/movie_loader.cc
r7889 r7913 128 128 glEnd(); 129 129 130 glPopAttrib(); 130 131 GraphicsEngine::leave2DMode(); 131 132 -
branches/gui/src/story_entities/simple_game_menu.cc
r7908 r7913 66 66 /// GUI 67 67 ///(this is as modular as it is possible). 68 /* 68 69 OrxGui::GLGuiPushButton* pb = new OrxGui::GLGuiPushButton("PUSH ME"); 69 70 pb->show(); … … 86 87 OrxGui::GLGuiHandler::getInstance()->activateCursor(); 87 88 OrxGui::GLGuiHandler::getInstance()->activate(); 89 */ 88 90 ///// 91 89 92 if (root != NULL) 90 93 this->loadParams(root); … … 106 109 if( this->dataTank) 107 110 delete this->dataTank; 108 delete OrxGui::GLGuiHandler::getInstance( );111 //delete OrxGui::GLGuiHandler::getInstance( ); 109 112 } 110 113 -
branches/gui/src/world_entities/skybox.cc
r7840 r7913 227 227 glDisable(GL_LIGHTING); 228 228 229 glPushAttrib(GL_ENABLE_BIT);230 229 glDisable(GL_FOG); 231 230 232 231 WorldEntity::draw(); 233 232 234 glPopAttrib();235 233 glPopAttrib(); 236 234
Note: See TracChangeset
for help on using the changeset viewer.