Function SDL_SetTextureScaleMode
pub unsafe extern "C" fn SDL_SetTextureScaleMode(
texture: *mut SDL_Texture,
scaleMode: SDL_ScaleMode,
) -> bool
Available on crate feature
dep_sdl3
only.Expand description
Set the scale mode used for texture scale operations.
The default texture scale mode is SDL_SCALEMODE_LINEAR
.
If the scale mode is not supported, the closest supported mode is chosen.
§Parameters
texture
: the texture to update.scaleMode
: theSDL_ScaleMode
to use for texture scaling.
§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.2.0.