| 289 | } |
| 290 | |
| 291 | const Point2I PlatformWindowSDL::getClientExtent() |
| 292 | { |
| 293 | // Fetch Client Rect from Windows |
| 294 | Point2I size; |
| 295 | SDL_GetWindowSize(mWindowHandle, &size.x, &size.y); |
| 296 | |
| 297 | return size; |
| 298 | } |
| 299 | |
| 300 | void PlatformWindowSDL::setBounds( const RectI &newBounds ) |
| 301 | { |
no test coverage detected