* Is the window currently grabbed */
| 452 | * Is the window currently grabbed |
| 453 | */ |
| 454 | bool cWindow::isGrabbed() const { |
| 455 | if (SDL_GetWindowGrab(mWindow) == SDL_TRUE) |
| 456 | return true; |
| 457 | |
| 458 | return false; |
| 459 | } |
| 460 | |
| 461 | void cWindow::ToggleFullscreen() { |
| 462 |
nothing calls this directly
no outgoing calls
no test coverage detected