Function SDL_WindowHasSurface

pub unsafe extern "C" fn SDL_WindowHasSurface(
    window: *mut SDL_Window,
) -> bool
Available on crate feature dep_sdl3 only.
Expand description

Return whether the window has a surface associated with it.

§Parameters

  • window: the window to query.

§Return value

Returns true if there is a surface associated with the window, or false otherwise.

§Thread safety

This function should only be called on the main thread.

§Availability

This function is available since SDL 3.2.0.

§See also