diff options
author | Zhenyu Wang <zhenyuw@linux.intel.com> | 2009-06-05 12:59:07 +0800 |
---|---|---|
committer | Zhenyu Wang <zhenyuw@linux.intel.com> | 2009-06-10 10:37:33 +0800 |
commit | 0d56ef94be0592aec9aa83e4a5e4ff13348640c2 (patch) | |
tree | 2a2a7dcb4a4d740aaf37e52007e5854897b7ae2d /src/i830_uxa.c | |
parent | 440ccc44f51d3a5d6f46c28cfcc576cad155fbbc (diff) |
Disable composite on new chipset for now
This depends on updated intel-gen4asm be ready for new chip.
Signed-off-by: Zhenyu Wang <zhenyuw@linux.intel.com>
Diffstat (limited to 'src/i830_uxa.c')
-rw-r--r-- | src/i830_uxa.c | 8 |
1 files changed, 8 insertions, 0 deletions
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; |