summaryrefslogtreecommitdiff
path: root/src/i830_memory.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/i830_memory.c')
-rw-r--r--src/i830_memory.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/i830_memory.c b/src/i830_memory.c
index f32abc2a..8fac2aaa 100644
--- a/src/i830_memory.c
+++ b/src/i830_memory.c
@@ -158,6 +158,9 @@ i830_check_display_stride(ScrnInfoPtr scrn, int stride, Bool tiling)
if (IS_I965G(intel) && tiling)
limit = KB(16);
+ if (IS_IGDNG(intel) && tiling)
+ limit = KB(32);
+
if (stride <= limit)
return TRUE;
else