diff options
author | Brian Paul <[email protected]> | 2005-07-22 02:55:36 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2005-07-22 02:55:36 +0000 |
commit | 60a6a0eb51a6cafc9f65bff8028510e0788cf311 (patch) | |
tree | 687063dd74a487ab67a42e84c7627471fc1c5939 /src/mesa/tnl/t_vp_build.c | |
parent | fea5a428e900ee4a3e2b8a0f7f6cf0d5264b9112 (diff) |
some GLuint idx -> GLint idx changes
Diffstat (limited to 'src/mesa/tnl/t_vp_build.c')
-rw-r--r-- | src/mesa/tnl/t_vp_build.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/tnl/t_vp_build.c b/src/mesa/tnl/t_vp_build.c index fc9fb15bd58..049bd20bd9d 100644 --- a/src/mesa/tnl/t_vp_build.c +++ b/src/mesa/tnl/t_vp_build.c @@ -1,6 +1,6 @@ /* * Mesa 3-D graphics library - * Version: 6.3 + * Version: 6.3.1 * * Copyright (C) 2005 Tungsten Graphics All Rights Reserved. * @@ -289,7 +289,7 @@ const static struct ureg undef = { /* Construct a ureg: */ -static struct ureg make_ureg(GLuint file, GLuint idx) +static struct ureg make_ureg(GLuint file, GLint idx) { struct ureg reg; reg.file = file; @@ -377,7 +377,7 @@ static struct ureg register_const4f( struct tnl_program *p, GLfloat s3) { GLfloat values[4]; - GLuint idx; + GLint idx; values[0] = s0; values[1] = s1; values[2] = s2; @@ -413,7 +413,7 @@ static struct ureg register_param6( struct tnl_program *p, GLint s5) { GLint tokens[6]; - GLuint idx; + GLint idx; tokens[0] = s0; tokens[1] = s1; tokens[2] = s2; |