diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2009-12-10 08:50:16 +0000 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2009-12-10 08:54:46 +0000 |
commit | 37f631d669c165c4fb56ccd7a6fc0a432f453b52 (patch) | |
tree | 607384ec0b932dfd970a237bf130c470da9cd537 /uxa/uxa-glyphs.c | |
parent | 093bb9ebe69760975a3fcf2322db950312e6c2d7 (diff) |
Revert "uxa-glyphs: Enable TILING_X on glyph caches."
This reverts commit 3f11bbec420080151406c203af292e55177e77d1.
For unknown reasons, enabling tiling for the glyph cache is causing
glyph corruption both across suspend and resume and VT switching, on a
wide range of chipsets (reports include both i8xx and gm45)
This strongly suggests that we are handling tiling, or updates to tiled
buffers, incorrectly across i915_gem_idle(). However, until we can find
the root cause, we want to fix this regression before the next stable
release, so simply revert this patch. :(
Fixes:
[Bug 25406] fonts garbled after resuming from suspend since 6729b508
http://bugs.freedesktop.org/show_bug.cgi?id=25406
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'uxa/uxa-glyphs.c')
-rw-r--r-- | uxa/uxa-glyphs.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/uxa/uxa-glyphs.c b/uxa/uxa-glyphs.c index 5c233216..ff167812 100644 --- a/uxa/uxa-glyphs.c +++ b/uxa/uxa-glyphs.c @@ -47,7 +47,6 @@ #include <stdlib.h> #include "uxa-priv.h" -#include "../src/common.h" #include "mipict.h" @@ -190,8 +189,7 @@ static Bool uxa_realize_glyph_caches(ScreenPtr pScreen, unsigned int format) pPixmap = (*pScreen->CreatePixmap) (pScreen, CACHE_PICTURE_WIDTH, - height, depth, - INTEL_CREATE_PIXMAP_TILING_X); + height, depth, 0); if (!pPixmap) return FALSE; |