Function SDL_GetWindowICCProfile

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

Get the raw ICC profile data for the screen the window is currently on.

§Parameters

  • window: the window to query.
  • size: the size of the ICC profile.

§Return value

Returns the raw ICC profile data on success or NULL on failure; call SDL_GetError() for more information. This should be freed with SDL_free() when it is no longer needed.

§Thread safety

This function should only be called on the main thread.

§Availability

This function is available since SDL 3.2.0.