From 0d56ef94be0592aec9aa83e4a5e4ff13348640c2 Mon Sep 17 00:00:00 2001 From: Zhenyu Wang Date: Fri, 5 Jun 2009 12:59:07 +0800 Subject: [PATCH] Disable composite on new chipset for now This depends on updated intel-gen4asm be ready for new chip. Signed-off-by: Zhenyu Wang --- src/i830_uxa.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/i830_uxa.c b/src/i830_uxa.c index eb35014e..faf4d5d0 100644 --- a/src/i830_uxa.c +++ b/src/i830_uxa.c @@ -722,6 +722,14 @@ i830_uxa_init (ScreenPtr pScreen) i830->uxa_driver->done_composite = i830_done_composite; } + /* FIXME */ + if (IS_IGDNG(i830)) { + i830->uxa_driver->check_composite = NULL; + i830->uxa_driver->prepare_composite = NULL; + i830->uxa_driver->composite = NULL; + i830->uxa_driver->done_composite = NULL; + } + i830->uxa_driver->prepare_access = i830_uxa_prepare_access; i830->uxa_driver->finish_access = i830_uxa_finish_access; i830->uxa_driver->pixmap_is_offscreen = i830_uxa_pixmap_is_offscreen;