pub unsafe extern "C" fn SDL_SetWindowFullscreen(
    window: *mut SDL_Window,
    flags: Uint32
) -> c_int
Expand description

Set a window’s fullscreen state.

flags may be SDL_WINDOW_FULLSCREEN, for “real” fullscreen with a videomode change; SDL_WINDOW_FULLSCREEN_DESKTOP for “fake” fullscreen that takes the size of the desktop; and 0 for windowed mode.

\param window the window to change \param flags SDL_WINDOW_FULLSCREEN, SDL_WINDOW_FULLSCREEN_DESKTOP or 0 \returns 0 on success or a negative error code on failure; call SDL_GetError() for more information.

\since This function is available since SDL 2.0.0.

\sa SDL_GetWindowDisplayMode \sa SDL_SetWindowDisplayMode