diff options
author | Brian Paul <[email protected]> | 2011-11-08 08:23:41 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-11-08 13:51:50 -0700 |
commit | 207a016ecaabbccf865a5b8e026b95a4276adc15 (patch) | |
tree | bc054ee9a5f32ed99be6d9894b11599143e624c7 /src/mesa/main/uniforms.h | |
parent | fab88822735e7a8eeb0ce13ff13f90184e916f9f (diff) |
mesa: fix signed/unsigned integer comparison warnings
Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/mesa/main/uniforms.h')
-rw-r--r-- | src/mesa/main/uniforms.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/uniforms.h b/src/mesa/main/uniforms.h index 6b102ec1505..c73aab3c1d5 100644 --- a/src/mesa/main/uniforms.h +++ b/src/mesa/main/uniforms.h @@ -182,7 +182,7 @@ _mesa_uniform(struct gl_context *ctx, struct gl_shader_program *shader_program, void _mesa_uniform_matrix(struct gl_context *ctx, struct gl_shader_program *shProg, - GLint cols, GLint rows, + GLuint cols, GLuint rows, GLint location, GLsizei count, GLboolean transpose, const GLfloat *values); |