mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 16:08:04 +02:00
fix addressing error in read_stencil_pixels()
This commit is contained in:
parent
906768316d
commit
e48ea92510
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue