From 3a893d14cd227454826a9a86cb3ce227d04bc352 Mon Sep 17 00:00:00 2001 From: Chris Wilson Date: Thu, 13 Feb 2014 22:46:22 +0000 Subject: [PATCH] sna: Increase the acceptable screen size range Signed-off-by: Chris Wilson --- src/sna/sna_display.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sna/sna_display.c b/src/sna/sna_display.c index 70673b0a..521d4ef4 100644 --- a/src/sna/sna_display.c +++ b/src/sna/sna_display.c @@ -3448,7 +3448,7 @@ static void set_size_range(struct sna *sna) * crtc limits, so if the mode exceeds the scanout restrictions, * we will quietly convert that to per-crtc pixmaps. */ - xf86CrtcSetSizeRange(sna->scrn, 320, 200, INT16_MAX, INT16_MAX); + xf86CrtcSetSizeRange(sna->scrn, 8, 8, INT16_MAX, INT16_MAX); } enum { /* XXX copied from hw/xfree86/modes/xf86Crtc.c */