mesa: s/GLint/GLuint/ in matrix.c to silence MSVC warnings

Reviewed-by: Jose Fonseca <jfonseca@vmware.com>
This commit is contained in:
Brian Paul 2012-11-04 16:43:44 -07:00
parent 49cea4d40c
commit d4e18764c6
1 changed files with 1 additions and 1 deletions

View File

@ -746,7 +746,7 @@ void _mesa_free_matrix_data( struct gl_context *ctx )
*/ */
void _mesa_init_transform( struct gl_context *ctx ) void _mesa_init_transform( struct gl_context *ctx )
{ {
GLint i; GLuint i;
/* Transformation group */ /* Transformation group */
ctx->Transform.MatrixMode = GL_MODELVIEW; ctx->Transform.MatrixMode = GL_MODELVIEW;