fix addressing error in read_stencil_pixels()

This commit is contained in:
Brian
2007-10-17 14:56:55 -06:00
parent 906768316d
commit e48ea92510

View File

@@ -87,13 +87,13 @@ read_stencil_pixels(GLcontext *ctx, GLint x, GLint y,
switch (ps->format) {
case PIPE_FORMAT_U_S8:
{
const ubyte *src = stmap + y * ps->region->pitch + x;
const ubyte *src = stmap + srcY * ps->region->pitch + x;
memcpy(values, src, width);
}
break;
case PIPE_FORMAT_S8_Z24:
{
const uint *src = (const uint *) stmap + y * ps->region->pitch + x;
const uint *src = (uint *) stmap + srcY * ps->region->pitch + x;
GLint k;
for (k = 0; k < width; k++) {
values[k] = src[k] >> 24;