Function SDL_GetRenderScale

pub unsafe extern "C" fn SDL_GetRenderScale(
    renderer: *mut SDL_Renderer,
    scaleX: *mut f32,
    scaleY: *mut f32,
) -> bool
Available on crate feature dep_sdl3 only.
Expand description

Get the drawing scale for the current target.

§Parameters

  • renderer: the rendering context.
  • scaleX: a pointer filled in with the horizontal scaling factor.
  • scaleY: a pointer filled in with the vertical scaling factor.

§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.

§See also