diff options
Diffstat (limited to 'src/raylib.h')
| -rw-r--r-- | src/raylib.h | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/src/raylib.h b/src/raylib.h index 5e18ae00..ed863649 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -678,19 +678,15 @@ typedef enum { // Shader uniform data types typedef enum { - UNIFORM_BOOL = 0, + UNIFORM_FLOAT = 0, + UNIFORM_VEC2, + UNIFORM_VEC3, + UNIFORM_VEC4, UNIFORM_INT, - UNIFORM_UNIT, - UNIFORM_FLOAT, UNIFORM_IVEC2, UNIFORM_IVEC3, UNIFORM_IVEC4, - UNIFORM_UVEC2, - UNIFORM_UVEC3, - UNIFORM_UVEC4, - UNIFORM_VEC2, - UNIFORM_VEC3, - UNIFORM_VEC4, + UNIFORM_SAMPLER2D } ShaderUniformDataType; // Material map type |
