(This is the documentation for SDL3, which is under heavy development and the API is changing! SDL2 is the current stable version!)

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

props the properties to use

Return Value

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 vulkan renderer:

Version

This function is available since SDL 3.0.0.

See Also


CategoryAPI, CategoryAPIFunction, CategoryRender