diff options
author | Brian <[email protected]> | 2007-01-23 16:37:51 -0700 |
---|---|---|
committer | Brian <[email protected]> | 2007-01-23 16:37:51 -0700 |
commit | 223d7cb3c785ad58c869a3ee0fbf2f1d42c3310d (patch) | |
tree | 85ae41eea6ed9b915e14603fc19ce2ef53765bb8 /src/mesa/shader/arbprogram.c | |
parent | bc5d480e2ca83855a343f1ad979e05f0ee59d2fb (diff) |
fix g++ warnings/errors
Diffstat (limited to 'src/mesa/shader/arbprogram.c')
-rw-r--r-- | src/mesa/shader/arbprogram.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/shader/arbprogram.c b/src/mesa/shader/arbprogram.c index f3b25da3948..5583f16ce8d 100644 --- a/src/mesa/shader/arbprogram.c +++ b/src/mesa/shader/arbprogram.c @@ -312,7 +312,7 @@ _mesa_ProgramEnvParameters4fvEXT(GLenum target, GLuint index, GLsizei count, const GLfloat *params) { GET_CURRENT_CONTEXT(ctx); - unsigned i; + GLint i; GLfloat * dest; ASSERT_OUTSIDE_BEGIN_END(ctx); @@ -464,7 +464,7 @@ _mesa_ProgramLocalParameters4fvEXT(GLenum target, GLuint index, GLsizei count, { GET_CURRENT_CONTEXT(ctx); struct gl_program *prog; - unsigned i; + GLint i; ASSERT_OUTSIDE_BEGIN_END(ctx); FLUSH_VERTICES(ctx, _NEW_PROGRAM); |