diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/swrast/s_texstore.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/swrast/s_texstore.c b/src/mesa/swrast/s_texstore.c index 4f4684ddb57..fce20011d2a 100644 --- a/src/mesa/swrast/s_texstore.c +++ b/src/mesa/swrast/s_texstore.c @@ -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++) { |