SDL_GetDefaultTextureScaleMode

Function SDL_GetDefaultTextureScaleMode 

Source
pub unsafe extern "C" fn SDL_GetDefaultTextureScaleMode(
    renderer: *mut SDL_Renderer,
    scale_mode: *mut SDL_ScaleMode,
) -> bool
Expand description

Get default texture scale mode of the given renderer.

§Parameters

§Return value

Returns true on success or false on failure; call SDL_GetError() for more information.

§Thread safety

This function should only be called on the main thread.

§Availability

This function is available since SDL 3.4.0.

§See also