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

SDL_CreateTextureWithProperties

Create a texture for a rendering context with the specified properties.

Header File

Defined in <SDL3/SDL_render.h>

Syntax

SDL_Texture* SDL_CreateTextureWithProperties(SDL_Renderer *renderer, SDL_PropertiesID props);

Function Parameters

renderer the rendering context
props the properties to use

Return Value

Returns a pointer to the created texture or NULL if no rendering context was active, the format was unsupported, or the width or height were out of range; call SDL_GetError() for more information.

Remarks

These are the supported properties:

With the direct3d11 renderer:

With the direct3d12 renderer:

With the metal renderer:

With the opengl renderer:

With the opengles2 renderer:

With the vulkan renderer:

Version

This function is available since SDL 3.0.0.

See Also


CategoryAPI, CategoryAPIFunction, CategoryRender