diff options
| author | Ray <[email protected]> | 2018-12-03 12:00:05 +0100 |
|---|---|---|
| committer | Ray <[email protected]> | 2018-12-03 12:00:05 +0100 |
| commit | 8b75a1a990baa6f4cbd0ad0b5dfc06ef6448ac89 (patch) | |
| tree | c87de9dc1d3422e363d4935dd90ec356b5336bc8 /src/raylib.h | |
| parent | f552d4354795d74bb448758d9cac9a25bbf1557e (diff) | |
| download | raylib-8b75a1a990baa6f4cbd0ad0b5dfc06ef6448ac89.tar.gz raylib-8b75a1a990baa6f4cbd0ad0b5dfc06ef6448ac89.zip | |
Improved textures wrap support
Diffstat (limited to 'src/raylib.h')
| -rw-r--r-- | src/raylib.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/raylib.h b/src/raylib.h index e3b51dc5..85272943 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -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 |
