|
Size: 648
Comment:
|
Size: 570
Comment: Unsure if hint override is equivalent: SDL_SetHintWithPriority(SDL_HINT_VIDEO_ALLOW_SCREENSAVER, "0", SDL_HINT_OVERRIDE);
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 16: | Line 16: |
| You can add your code example here | SDL_DisableScreenSaver(); |
| Line 20: | Line 20: |
| [[SDL_EnableScreenSaver]]() is automatically called when shutting down SDL, so you don't have to worry about restoring the original state yourself. | If you disable the screensaver, it is automatically re-enabled when SDL quits. |
SDL_DisableScreenSaver
Use this function to prevent the screen from being blanked by a screen saver.
Syntax
void SDL_DisableScreenSaver(void)
Code Examples
SDL_DisableScreenSaver();
Remarks
If you disable the screensaver, it is automatically re-enabled when SDL quits.
