summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlex Deucher <alexdeucher@gmail.com>2009-03-19 20:48:16 -0400
committerAlex Deucher <alexdeucher@gmail.com>2009-03-19 20:48:16 -0400
commit44081e8fd2bf974272d5447b45dd7b206cf939c1 (patch)
tree3ec691163b95a53c49dd869c27c0e60afdfcf653 /src
parente8e2367b66d9a4f5977d95f52b37cdbad75e409a (diff)
R6xx/R7xx EXA: fix maxPitchBytes
should now allow accel up the hw max of 8192x8192
Diffstat (limited to 'src')
-rw-r--r--src/r600_exa.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/r600_exa.c b/src/r600_exa.c
index 40f02e1e..3faa7870 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;