Changeset 2007 for code/branches/objecthierarchy/src/orxonox/gamestates
- Timestamp:
- Oct 24, 2008, 1:56:07 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/objecthierarchy/src/orxonox/gamestates/GSGraphics.cc
r1949 r2007 488 488 for (ObjectList<orxonox::WindowEventListener>::iterator it = ObjectList<orxonox::WindowEventListener>::begin(); it; ++it) 489 489 it->windowResized(this->renderWindow_->getWidth(), this->renderWindow_->getHeight()); 490 491 // OIS needs this under linux even if we only use relative input measurement. 492 if (this->inputManager_) 493 this->inputManager_->setWindowExtents(renderWindow_->getWidth(), renderWindow_->getHeight()); 490 494 } 491 495 … … 502 506 503 507 // instruct InputManager to clear the buffers (core library so we cannot use the interface) 504 InputManager::getInstance().clearBuffers(); 508 if (this->inputManager_) 509 this->inputManager_->clearBuffers(); 505 510 } 506 511
Note: See TracChangeset
for help on using the changeset viewer.