Changeset 6522 in orxonox.OLD for trunk/src/lib/graphics
- Timestamp:
- Jan 18, 2006, 2:20:13 AM (19 years ago)
- Location:
- trunk/src/lib/graphics
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/graphics/graphics_engine.cc
r6441 r6522 36 36 #include "texture.h" 37 37 38 #include "shell_command.h" 39 38 40 #ifdef __WIN32__ 39 41 #include "class_list.h" … … 41 43 #endif 42 44 using namespace std; 45 46 SHELL_COMMAND(wireframe, GraphicsEngine, wireframe); 43 47 44 48 /** … … 468 472 } 469 473 474 void GraphicsEngine::wireframe() 475 { 476 glPolygonMode(GL_FRONT_AND_BACK, GL_LINE); 477 } 478 470 479 /** 471 480 * stores the GL_matrices -
trunk/src/lib/graphics/graphics_engine.h
r6142 r6522 60 60 static void enter2DMode(); 61 61 static void leave2DMode(); 62 63 void wireframe(); 62 64 63 65 static void storeMatrices();
Note: See TracChangeset
for help on using the changeset viewer.