diff options
author | Dave Airlie <airlied@linux.ie> | 2008-05-07 01:39:28 +1000 |
---|---|---|
committer | Dave Airlie <airlied@linux.ie> | 2008-05-07 01:39:28 +1000 |
commit | e36ef14e3a1087e1fe41baa26ade2937f396001f (patch) | |
tree | 669e9b69eaf10ea796bf55ffca743caada4be1e2 | |
parent | 8fc19bee27c0f151d2ab3354f6ac0992b358436d (diff) | |
download | xf86-video-ati-frc-e36ef14e3a1087e1fe41baa26ade2937f396001f.tar.gz xf86-video-ati-frc-e36ef14e3a1087e1fe41baa26ade2937f396001f.tar.bz2 |
radeon: fix textured-xv on zaphod
-rw-r--r-- | src/radeon_textured_videofuncs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/radeon_textured_videofuncs.c b/src/radeon_textured_videofuncs.c index f7069f0..b0286a6 100644 --- a/src/radeon_textured_videofuncs.c +++ b/src/radeon_textured_videofuncs.c @@ -88,7 +88,7 @@ FUNC_NAME(RADEONDisplayTexturedVideo)(ScrnInfoPtr pScrn, RADEONPortPrivPtr pPriv #ifdef USE_EXA if (info->useEXA) { - dst_offset = exaGetPixmapOffset(pPixmap) + info->fbLocation; + dst_offset = exaGetPixmapOffset(pPixmap) + info->fbLocation + pScrn->fbOffset; dst_pitch = exaGetPixmapPitch(pPixmap); } else #endif |