From 20fb8c2e2fccb28c1b89e6e2a5c685e1287baedb Mon Sep 17 00:00:00 2001 From: Kevin E Martin Date: Tue, 22 Sep 2009 11:41:33 +1000 Subject: [PATCH] dmx: disable Get/SetWindowPixmap, we don't support composite/redirected windows Signed-off-by: Peter Hutterer --- hw/dmx/dmxscrinit.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/hw/dmx/dmxscrinit.c b/hw/dmx/dmxscrinit.c index b5afb5839..cab212d35 100644 --- a/hw/dmx/dmxscrinit.c +++ b/hw/dmx/dmxscrinit.c @@ -282,6 +282,10 @@ Bool dmxScreenInit(int idx, ScreenPtr pScreen, int argc, char *argv[]) (void)dmxPictureInit(pScreen, 0, 0); #endif + /* Not yet... */ + pScreen->GetWindowPixmap = NULL; + pScreen->SetWindowPixmap = NULL; + if (dmxShadowFB && !shadowInit(pScreen, dmxShadowUpdateProc, NULL)) return FALSE;