diff options
author | Dave Airlie <airlied@redhat.com> | 2009-08-24 14:11:24 +1000 |
---|---|---|
committer | Alex Deucher <alexdeucher@gmail.com> | 2009-08-24 02:09:52 -0400 |
commit | 4a2f0022373b553c922e63c84f2de82a5426a1b5 (patch) | |
tree | 27df593f6f105aaa743d9c42613eebb35c0f8705 | |
parent | 7d91ae120894dec5361d7ac5a981749fa96eed0e (diff) |
r600: fix bad unit in texture setup
-rw-r--r-- | src/r600_exa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/r600_exa.c b/src/r600_exa.c index 9b80ed26..77e94ea5 100644 --- a/src/r600_exa.c +++ b/src/r600_exa.c @@ -1109,10 +1109,10 @@ static Bool R600TextureSetup(PicturePtr pPict, PixmapPtr pPix, accel_state->src_pitch[unit] = exaGetPixmapPitch(pPix) / (pPix->drawable.bitsPerPixel / 8); accel_state->src_size[unit] = exaGetPixmapPitch(pPix) * pPix->drawable.height; - if (accel_state->src_pitch[1] & 7) + if (accel_state->src_pitch[unit] & 7) RADEON_FALLBACK(("Bad pitch %d 0x%x\n", (int)accel_state->src_pitch[unit], unit)); - if (accel_state->src_mc_addr[1] & 0xff) + if (accel_state->src_mc_addr[unit] & 0xff) RADEON_FALLBACK(("Bad offset %d 0x%x\n", (int)accel_state->src_mc_addr[unit], unit)); for (i = 0; i < sizeof(R600TexFormats) / sizeof(R600TexFormats[0]); i++) { |