tnl: fix MSVC signed/unsigned warnings

Reviewed-by: Jose Fonseca <jfonseca@vmware.com>
This commit is contained in:
Brian Paul
2012-11-04 16:43:44 -07:00
parent 5c05d28a43
commit cb5fb15578
+2 -1
View File
@@ -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) {