|
Size: 913
Comment: added DRAFT to top for removal after page is edited
|
Size: 907
Comment: Update WindowID > Window*
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 12: | Line 12: |
| int SDL_SetWindowFullscreen(SDL_WindowID windowID, int fullscreen) |
int SDL_SetWindowFullscreen(SDL_Window* window, int fullscreen) |
| Line 17: | Line 17: |
| ||'''windowID'''||the type used to identify the window|| | ||'''window'''||the type used to identify the window|| |
DRAFT |
SDL_SetWindowFullscreen
Use this function to set the window's fullscreen state.
Contents
Syntax
int SDL_SetWindowFullscreen(SDL_Window* window,
int fullscreen)
Function Parameters
window |
the type used to identify the window |
fullscreen |
Return Value
Returns 0 on success or -1 if setting the display mode failed; call SDL_GetError() for more information.
Code Examples
You can add your code example here
Remarks
You can add useful comments here
