Changeset 8989 in orxonox.OLD for trunk/src/lib
- Timestamp:
- Jul 1, 2006, 5:32:45 PM (18 years ago)
- Location:
- trunk/src/lib
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/graphics/render2D/element_2d.cc
r8360 r8989 700 700 (*reparenter)->parentMode & E2D_REPARENT_ON_PARENTS_REMOVE) 701 701 { 702 printf("TEST----------------%s ---- %s\n", this->getClassName(), (*reparenter)->getClassName());703 702 (*reparenter)->reparent2D(); 704 printf("REPARENTED TO: %s::%s\n",(*reparenter)->getParent2D()->getClassName(),(*reparenter)->getParent2D()->getName());703 PRINTF(5)("REPARENTED TO: %s::%s\n",(*reparenter)->getParent2D()->getClassName(),(*reparenter)->getParent2D()->getName()); 705 704 } 706 705 } -
trunk/src/lib/graphics/text_engine/font.cc
r8768 r8989 273 273 Material::debug(); 274 274 275 PRINT(0)("TEST %p and %p\n", this->data.get(), this->data->textureData().get());275 //PRINT(0)("TEST %p and %p\n", this->data.get(), this->data->textureData().get()); 276 276 // print the loaded font's style 277 277 /* int style = TTF_STYLE_NORMAL; -
trunk/src/lib/gui/gl/glgui_widget.cc
r8982 r8989 14 14 */ 15 15 16 #define DEBUG_SPECIAL_MODULE 4//DEBUG_MODULE_GUI16 #define DEBUG_SPECIAL_MODULE DEBUG_MODULE_GUI 17 17 18 18 #include "glgui_widget.h" … … 102 102 103 103 this->_font = Font(ResourceManager::getInstance()->getDataDir() + "/fonts/final_frontier.ttf", 20); 104 this->_font.debug();105 104 this->resetStyle(); 106 105 … … 757 756 //this->_currentStyle = this->_style[state]; 758 757 this->_state = state; 759 PRINTF( 3)("%s::%s Switches to state %s\n", this->getClassName(), this->getName(), OrxGui::StateString[state].c_str());758 PRINTF(4)("%s::%s Switches to state %s\n", this->getClassName(), this->getName(), OrxGui::StateString[state].c_str()); 760 759 761 760 this->animateBack();
Note: See TracChangeset
for help on using the changeset viewer.