| 64 | |
| 65 | |
| 66 | SDLSurface::WindowSize SDLSurface::GetDrawableArea() { |
| 67 | int width; int height; |
| 68 | SDL_GL_GetDrawableSize(window, &width, &height); |
| 69 | return WindowSize{ static_cast<unsigned int>(width),static_cast<unsigned int>(height) }; |
| 70 | } |
no test coverage detected