OSDN Git Service

fix an assertion
authorBrian Paul <brian.paul@tungstengraphics.com>
Sat, 1 Oct 2005 16:04:38 +0000 (16:04 +0000)
committerBrian Paul <brian.paul@tungstengraphics.com>
Sat, 1 Oct 2005 16:04:38 +0000 (16:04 +0000)
src/mesa/swrast/s_texstore.c

index 4f4684d..fce2001 100644 (file)
@@ -192,7 +192,7 @@ read_depth_stencil_image(GLcontext *ctx, GLint x, GLint y,
    for (i = 0; i < height; i++) {
       GLstencil stencil[MAX_WIDTH];
       GLint j;
-      ASSERT(sizeof(GLstencil) == stencilRb->StencilBits);
+      ASSERT(8 * sizeof(GLstencil) == stencilRb->StencilBits);
       _swrast_get_row(ctx, stencilRb, width, x, y + i,
                       stencil, sizeof(GLstencil));
       for (j = 0; j < width; j++) {