diff options
author | Brian Paul <[email protected]> | 2012-01-16 10:55:32 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2012-01-24 14:12:15 -0700 |
commit | b766d4bb43b2c8271413c1efafe3590fa75efc3c (patch) | |
tree | d18c035d1bfc7dfa9566fd53dfd9e59a2dc74987 /src/mesa/swrast/s_stencil.c | |
parent | 7d1ddec92168e9b6ead0da80b18364a75f9a85e6 (diff) |
swrast: use gl_renderbuffer::StrideInBytes in depth/stencil code
Diffstat (limited to 'src/mesa/swrast/s_stencil.c')
-rw-r--r-- | src/mesa/swrast/s_stencil.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/swrast/s_stencil.c b/src/mesa/swrast/s_stencil.c index 98af928208c..005423e836c 100644 --- a/src/mesa/swrast/s_stencil.c +++ b/src/mesa/swrast/s_stencil.c @@ -297,7 +297,7 @@ get_s8_values(struct gl_context *ctx, struct gl_renderbuffer *rb, GLuint i; if (rb->Format == MESA_FORMAT_S8) { - const GLint rowStride = rb->RowStride; + const GLint rowStride = rb->RowStrideBytes; for (i = 0; i < count; i++) { if (x[i] >= 0 && y[i] >= 0 && x[i] < w && y[i] < h) { stencil[i] = *(map + y[i] * rowStride + x[i]); @@ -306,7 +306,7 @@ get_s8_values(struct gl_context *ctx, struct gl_renderbuffer *rb, } else { const GLint bpp = _mesa_get_format_bytes(rb->Format); - const GLint rowStride = rb->RowStride * bpp; + const GLint rowStride = rb->RowStrideBytes; for (i = 0; i < count; i++) { if (x[i] >= 0 && y[i] >= 0 && x[i] < w && y[i] < h) { const GLubyte *src = map + y[i] * rowStride + x[i] * bpp; |