Wiki Page Content

Revision 1 as of 2016-03-24 23:26:14

Clear message

DRAFT

SDL_RenderSetIntegerScale

Use this function to set whether to force integer scales for resolution-independent rendering.

Syntax

int SDL_RenderSetIntegerScale(SDL_Renderer* renderer,
                              SDL_bool      enable)

Function Parameters

renderer

the renderer for which integer scaling should be set

enable

enable or disable the integer scaling for rendering

Return Value

Returns 0 on success or a negative error code on failure; call SDL_GetError() for more information.

Code Examples

You can add your code example here

Remarks

This function restricts the logical viewport to integer values - that is, when a resolution is between two multiples of a logical size, the viewport size is rounded down to the lower multiple.

Version

This function is available in unstable versions newer than (stable) SDL 2.0.4.


CategoryAPI, CategoryRender

(Page Info.)
Feedback
Please include your contact information if you'd like to receive a reply.
Submit