pub unsafe extern "C" fn SDL_GetDefaultTextureScaleMode(
renderer: *mut SDL_Renderer,
scale_mode: *mut SDL_ScaleMode,
) -> boolExpand description
Get default texture scale mode of the given renderer.
§Parameters
renderer: the renderer to get data from.scale_mode: aSDL_ScaleModefilled with current default scale mode. SeeSDL_SetDefaultTextureScaleMode()for the meaning of the value.
§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.