From 2f5448f1329f344702e4e29b2509d7190677bbf0 Mon Sep 17 00:00:00 2001 From: Chris Wilson Date: Fri, 30 Dec 2011 22:13:05 +0000 Subject: [PATCH] sna: compare tiling against minimum width for relevancy Signed-off-by: Chris Wilson --- src/sna/kgem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sna/kgem.c b/src/sna/kgem.c index 45aa5f89..89b464ef 100644 --- a/src/sna/kgem.c +++ b/src/sna/kgem.c @@ -1788,7 +1788,7 @@ int kgem_choose_tiling(struct kgem *kgem, int tiling, int width, int height, int tiling = I915_TILING_NONE; goto done; } - if (tiling == I915_TILING_Y && width * bpp <= 8*32/2) { + if (tiling == I915_TILING_Y && width * bpp <= 8*128/2) { DBG(("%s: too thin [%d] for TILING_Y\n", __FUNCTION__, width)); tiling = I915_TILING_NONE;