summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrancisco Jerez <currojerez@riseup.net>2010-08-05 00:40:40 +0200
committerFrancisco Jerez <currojerez@riseup.net>2010-08-05 02:20:17 +0200
commitb96170a4e51c1d3167601210ca31e98283c02885 (patch)
tree11924fb823feb9572347977789dd8b33fd28c503
parent321eb2df5c8b1da4d6469037dd1d8888b508fabd (diff)
downloadxorg-driver-xf86-video-nouveau-b96170a4e51c1d3167601210ca31e98283c02885.tar.gz
nv10/exa: Bump maxX/maxY to 4096/4096.
This way we can do accelerated 2D on larger pixmaps, it will still fall back to software when we hit the 2048x2048 texturing limit in a composite operation.
-rw-r--r--src/nouveau_exa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nouveau_exa.c b/src/nouveau_exa.c
index 1b8888e..80d0338 100644
--- a/src/nouveau_exa.c
+++ b/src/nouveau_exa.c
@@ -524,7 +524,7 @@ nouveau_exa_init(ScreenPtr pScreen)
exa->maxX = 8192;
exa->maxY = 8192;
} else
- if (pNv->Architecture >= NV_ARCH_20) {
+ if (pNv->Architecture >= NV_ARCH_10) {
exa->maxX = 4096;
exa->maxY = 4096;
} else {