resize the Torque 3D child window to the specified width and height
| 398 | |
| 399 | // resize the Torque 3D child window to the specified width and height |
| 400 | void torque_resizewindow(S32 width, S32 height) |
| 401 | { |
| 402 | if (PlatformWindowManager::get() && PlatformWindowManager::get()->getFirstWindow()) |
| 403 | PlatformWindowManager::get()->getFirstWindow()->setSize(Point2I(width,height)); |
| 404 | } |
| 405 | |
| 406 | #if defined(TORQUE_OS_WIN) && !defined(TORQUE_SDL) |
| 407 | // retrieve the hwnd of our render window |
no test coverage detected