The addressing mode for a texture when used in SDL_RenderGeometry().
Defined in <SDL3/SDL_render.h>
typedef enum SDL_TextureAddressMode
{1,
SDL_TEXTURE_ADDRESS_INVALID = -/**< Wrapping is enabled if texture coordinates are outside [0, 1], this is the default */
SDL_TEXTURE_ADDRESS_AUTO, /**< Texture coordinates are clamped to the [0, 1] range */
SDL_TEXTURE_ADDRESS_CLAMP, /**< The texture is repeated (tiled) */
SDL_TEXTURE_ADDRESS_WRAP, } SDL_TextureAddressMode;
This affects how texture coordinates are interpreted outside of [0, 1]
This enum is available since SDL 3.4.0.