From e4175df76cb71c4998215b91fc570086974782f6 Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Wed, 18 Sep 2024 14:02:19 +0200 Subject: [PATCH] WIP: enable rander ext NOTE: still incomplete - breaks fvwm --- hw/xnest/Screen.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/hw/xnest/Screen.c b/hw/xnest/Screen.c index e7f7067cd..48f5e657b 100644 --- a/hw/xnest/Screen.c +++ b/hw/xnest/Screen.c @@ -23,6 +23,7 @@ is" without express or implied warranty. #include #include "mi/mi_priv.h" +#include "render/mipict.h" #include "scrnintstr.h" #include "dix.h" @@ -512,6 +513,9 @@ breakout: if (!xnestCreateDefaultColormap(pScreen)) return FALSE; + if (!miPictureInit(pScreen, 0, 0)) + return FALSE; + return TRUE; }