diff options
Diffstat (limited to 'vendor/sdl3/sdl3_render.odin')
| -rw-r--r-- | vendor/sdl3/sdl3_render.odin | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/vendor/sdl3/sdl3_render.odin b/vendor/sdl3/sdl3_render.odin index 68e333c64..9b2d4efd4 100644 --- a/vendor/sdl3/sdl3_render.odin +++ b/vendor/sdl3/sdl3_render.odin @@ -19,10 +19,10 @@ TextureAccess :: enum c.int { } TextureAddressMode :: enum c.int { - TEXTURE_ADDRESS_INVALID = -1, - TEXTURE_ADDRESS_AUTO, /**< Wrapping is enabled if texture coordinates are outside [0, 1], this is the default */ - TEXTURE_ADDRESS_CLAMP, /**< Texture coordinates are clamped to the [0, 1] range */ - TEXTURE_ADDRESS_WRAP, /**< The texture is repeated (tiled) */ + INVALID = -1, + AUTO, /**< Wrapping is enabled if texture coordinates are outside [0, 1], this is the default */ + CLAMP, /**< Texture coordinates are clamped to the [0, 1] range */ + WRAP, /**< The texture is repeated (tiled) */ } RendererLogicalPresentation :: enum c.int { |