mesa: silence MSVC signed/unsigned comparision warnings in accum.c
authorBrian Paul <brianp@vmware.com>
Sat, 27 Oct 2012 14:58:19 +0000 (08:58 -0600)
committerBrian Paul <brianp@vmware.com>
Mon, 29 Oct 2012 23:56:04 +0000 (17:56 -0600)
Reviewed-by: Jose Fonseca <jfonseca@vmware.com>
src/mesa/main/accum.c

index 8b71640df6c483000714657d575a89e6f62668c0..e2d7726b5047d2ad11b8beca92a1cd7b02e4d108 100644 (file)
@@ -205,7 +205,7 @@ accum_scale_or_bias(struct gl_context *ctx, GLfloat value,
 
    if (accRb->Format == MESA_FORMAT_SIGNED_RGBA_16) {
       const GLshort incr = (GLshort) (value * 32767.0f);
-      GLuint i, j;
+      GLint i, j;
       if (bias) {
          for (j = 0; j < height; j++) {
             GLshort *acc = (GLshort *) accMap;
@@ -283,7 +283,7 @@ accum_or_load(struct gl_context *ctx, GLfloat value,
 
    if (accRb->Format == MESA_FORMAT_SIGNED_RGBA_16) {
       const GLfloat scale = value * 32767.0f;
-      GLuint i, j;
+      GLint i, j;
       GLfloat (*rgba)[4];
 
       rgba = malloc(width * 4 * sizeof(GLfloat));