summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Deucher <alexdeucher@gmail.com>2009-03-19 20:49:42 -0400
committerAlex Deucher <alexdeucher@gmail.com>2009-03-19 20:49:42 -0400
commitf0f640f105da161e7dbb08bdd85f7ff065696e72 (patch)
treeafeb21b1ba5f436b64d25d847213c71cc5d2b5ad
parent37da5e5abf7907f9341354732775d45ba88319f0 (diff)
R6xx/R7xx EXA: fix maxPitchBytes
should now allow accel up the hw max of 8192x8192
-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 bf8b00d..51d2890 100644
--- a/src/r600_exa.c
+++ b/src/r600_exa.c
@@ -2150,10 +2150,10 @@ R6xxEXAInit(ScrnInfoPtr pScrn, ScreenPtr pScreen)
EXAInfo->pixmapPitchAlign = 256;
#if EXA_VERSION_MAJOR > 2 || (EXA_VERSION_MAJOR == 2 && EXA_VERSION_MINOR >= 3)
- EXAInfo->maxPitchBytes = 16320;
+ EXAInfo->maxPitchBytes = 32768;
EXAInfo->maxX = 8192;
#else
- EXAInfo->maxX = 16320 / 4;
+ EXAInfo->maxX = 8192;
#endif
EXAInfo->maxY = 8192;