From fad85f1a528b9dbcfb3729e8a73b66f973bc097b Mon Sep 17 00:00:00 2001 From: Xavier Chantry Date: Wed, 6 Jul 2011 21:18:11 +0200 Subject: [PATCH] exa: force the use of sysmem pixmaps on 64MB cards bump the limit to 64MB, see 5587f40c1b8af7d178f9a68d0f1fecdfc0ca9749 --- src/nouveau_exa.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/nouveau_exa.c b/src/nouveau_exa.c index 6ffee2a..d30f279 100644 --- a/src/nouveau_exa.c +++ b/src/nouveau_exa.c @@ -322,7 +322,7 @@ nouveau_exa_create_pixmap(ScreenPtr pScreen, int width, int height, int depth, return calloc(1, sizeof(*nvpix)); if (!pNv->exa_force_cp && - pNv->dev->vm_vram_size <= 32*1024*1024) + pNv->dev->vm_vram_size <= 64*1024*1024) return NULL; nvpix = calloc(1, sizeof(*nvpix)); -- 1.7.4.1