mirror of
https://github.com/raysan5/raylib.git
synced 2026-04-14 11:09:10 -04:00
Improved textures wrap support
This commit is contained in:
@ -731,7 +731,8 @@ typedef enum {
|
||||
typedef enum {
|
||||
WRAP_REPEAT = 0, // Repeats texture in tiled mode
|
||||
WRAP_CLAMP, // Clamps texture to edge pixel in tiled mode
|
||||
WRAP_MIRROR // Mirrors the texture in tiled mode
|
||||
WRAP_MIRROR_REPEAT, // Mirrors and repeats the texture in tiled mode
|
||||
WRAP_MIRROR_CLAMP // Mirrors and clamps to border the texture in tiled mode
|
||||
} TextureWrapMode;
|
||||
|
||||
// Font type, defines generation method
|
||||
|
||||
Reference in New Issue
Block a user