xf86-video-ati: Branch 'master'

Alex Deucher agd5f at kemper.freedesktop.org
Thu Mar 19 17:49:21 PDT 2009


 src/r600_exa.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 44081e8fd2bf974272d5447b45dd7b206cf939c1
Author: Alex Deucher <alexdeucher at gmail.com>
Date:   Thu Mar 19 20:48:16 2009 -0400

    R6xx/R7xx EXA: fix maxPitchBytes
    
    should now allow accel up the hw max of 8192x8192

diff --git a/src/r600_exa.c b/src/r600_exa.c
index 40f02e1..3faa787 100644
--- a/src/r600_exa.c
+++ b/src/r600_exa.c
@@ -2105,10 +2105,10 @@ R600DrawInit(ScreenPtr pScreen)
 #if EXA_VERSION_MAJOR > 2 || (EXA_VERSION_MAJOR == 2 && EXA_VERSION_MINOR >= 3)
     xf86DrvMsg(pScrn->scrnIndex, X_INFO, "Setting EXA maxPitchBytes\n");
 
-    info->accel_state->exa->maxPitchBytes = 16320;
+    info->accel_state->exa->maxPitchBytes = 32768;
     info->accel_state->exa->maxX = 8192;
 #else
-    info->accel_state->exa->maxX = 16320 / 4;
+    info->accel_state->exa->maxX = 8192;
 #endif
     info->accel_state->exa->maxY = 8192;
 


More information about the xorg-commit mailing list