From a803554c77663b2cd0f3af1fb4573b2bbfa27a9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Mork?= Date: Thu, 4 Nov 2010 15:51:55 +0100 Subject: [PATCH] Disabling put_image to fix the black screen problem MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Switching to native fullscreen mode in SDL will leave the X server showing only a black screen. This is a regression from version 2.9.1. Bisecting shows that this was introduced between However, reverting the bad commit(s) is not possible. This is a simple workaround, disabling UXA put_image without removing the now unused code. Further investigation is required so that put_image can be reeanbled, but this does at least fix the regression. Signed-off-by: Bjørn Mork --- src/i830_uxa.c | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/src/i830_uxa.c b/src/i830_uxa.c index 61e857f..c34ba18 100644 --- a/src/i830_uxa.c +++ b/src/i830_uxa.c @@ -1157,7 +1157,6 @@ Bool i830_uxa_init(ScreenPtr screen) } /* PutImage */ - intel->uxa_driver->put_image = i830_uxa_put_image; intel->uxa_driver->get_image = i830_uxa_get_image; intel->uxa_driver->prepare_access = i830_uxa_prepare_access; -- 1.7.2.3