diff options
author | José Fonseca <[email protected]> | 2009-06-02 16:41:45 -0700 |
---|---|---|
committer | José Fonseca <[email protected]> | 2009-06-02 16:41:45 -0700 |
commit | 273117ceed47bff58a0f475dd36b37721e997f91 (patch) | |
tree | 9f86d0d5b0c9841b1183c9970f10482b6cd45252 /src/gallium | |
parent | 840af5fd62edc01769cc3818702ea399a0c68c40 (diff) |
util: Unsaved change missing from last commit.
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/auxiliary/util/u_tile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/util/u_tile.c b/src/gallium/auxiliary/util/u_tile.c index a2fcdad9e4d..9747a55cbfa 100644 --- a/src/gallium/auxiliary/util/u_tile.c +++ b/src/gallium/auxiliary/util/u_tile.c @@ -1141,7 +1141,7 @@ pipe_get_tile_z(struct pipe_transfer *pt, for (i = 0; i < h; i++) { for (j = 0; j < w; j++) { /* convert 24-bit Z to 32-bit Z */ - pDest[j] = (ptrc[j] & 0xffffff00) | (ptrc[j] & 0xff); + pDest[j] = (ptrc[j] & 0xffffff00) | ((ptrc[j] >> 24) & 0xff); } pDest += dstStride; ptrc += pt->stride/4; |