| 11 | } |
| 12 | |
| 13 | void SdlBaseManager::_windowResized(int w, int h) |
| 14 | { |
| 15 | resizeRender(w, h); |
| 16 | |
| 17 | if (mPlatformReady) |
| 18 | MyGUI::RenderManager::getInstance().setViewSize(w, h); |
| 19 | |
| 20 | setInputViewSize(w, h); |
| 21 | } |
| 22 | |
| 23 | bool SdlBaseManager::create(int _width, int _height) |
| 24 | { |
nothing calls this directly
no test coverage detected