| 258 | } |
| 259 | |
| 260 | const Point2I PlatformWindowSDL::getClientExtent() |
| 261 | { |
| 262 | // Fetch Client Rect from Windows |
| 263 | Point2I size; |
| 264 | SDL_GetWindowSize(mWindowHandle, &size.x, &size.y); |
| 265 | |
| 266 | return size; |
| 267 | } |
| 268 | |
| 269 | void PlatformWindowSDL::setBounds( const RectI &newBounds ) |
| 270 | { |
no test coverage detected