SDL_CreateRendererWithProperties

Create a 2D rendering context for a window, with the specified properties.

Header File

Defined in <SDL3/SDL_render.h>

Syntax

SDL_Renderer * SDL_CreateRendererWithProperties(SDL_PropertiesID props);

Function Parameters

SDL_PropertiesID props the properties to use.

Return Value

(SDL_Renderer *) Returns a valid rendering context or NULL if there was an error; call SDL_GetError() for more information.

Remarks

These are the supported properties:

With the SDL GPU renderer:

With the vulkan renderer:

Thread Safety

This function should only be called on the main thread.

Version

This function is available since SDL 3.2.0.

See Also


CategoryAPI, CategoryAPIFunction, CategoryRender