summaryrefslogtreecommitdiffstats
path: root/src/mesa/tnl
diff options
context:
space:
mode:
authorBrian Paul <[email protected]>2012-11-04 16:43:44 -0700
committerBrian Paul <[email protected]>2012-11-06 07:42:37 -0700
commitcb5fb155780d6a697d1efde123f3e8080f5bfd45 (patch)
tree7f4d2e9f4f9f81444c2d7eb84ba7f8592f44dc32 /src/mesa/tnl
parent5c05d28a43b9cd448f60677ae151efda76b54b3a (diff)
tnl: fix MSVC signed/unsigned warnings
Reviewed-by: Jose Fonseca <[email protected]>
Diffstat (limited to 'src/mesa/tnl')
-rw-r--r--src/mesa/tnl/t_draw.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/tnl/t_draw.c b/src/mesa/tnl/t_draw.c
index 6a3c9662e96..0631eb183f1 100644
--- a/src/mesa/tnl/t_draw.c
+++ b/src/mesa/tnl/t_draw.c
@@ -141,7 +141,8 @@ convert_fixed_to_float(const struct gl_client_array *input,
const GLubyte *ptr, GLfloat *fptr,
GLuint count)
{
- GLuint i, j;
+ GLuint i;
+ GLint j;
const GLint size = input->Size;
if (input->Normalized) {