s/GLuint/GLushort/ in read_depth_stencil_image()
authorBrian Paul <brian.paul@tungstengraphics.com>
Wed, 15 Mar 2006 01:36:52 +0000 (01:36 +0000)
committerBrian Paul <brian.paul@tungstengraphics.com>
Wed, 15 Mar 2006 01:36:52 +0000 (01:36 +0000)
src/mesa/swrast/s_texstore.c

index a3e6955..d6b98ac 100644 (file)
@@ -148,11 +148,12 @@ read_depth_stencil_image(GLcontext *ctx, GLint x, GLint y,
       }
    }
    else {
-      GLuint z16[MAX_WIDTH];
+      GLushort z16[MAX_WIDTH];
       ASSERT(depthRb->DataType == GL_UNSIGNED_SHORT);
       for (i = 0; i < height; i++) {
          GLint j;
          _swrast_get_row(ctx, depthRb, width, x, y + i, z16, sizeof(GLushort));
+         /* convert GLushorts to GLuints */
          for (j = 0; j < width; j++) {
             dst[j] = z16[j];
          }