From 074c98cf5365c3d534f7c62ad6dbdd332883b46b Mon Sep 17 00:00:00 2001 From: Paolo Borelli Date: Mon, 22 Jul 2019 12:46:31 +0200 Subject: [PATCH] Xvfb: set rotations ret value --- hw/vfb/InitOutput.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hw/vfb/InitOutput.c b/hw/vfb/InitOutput.c index f36752fc1..48efb61b2 100644 --- a/hw/vfb/InitOutput.c +++ b/hw/vfb/InitOutput.c @@ -786,6 +786,9 @@ vfbRRCrtcSet(ScreenPtr pScreen, static Bool vfbRRGetInfo(ScreenPtr pScreen, Rotation *rotations) { + /* Don't support rotations */ + *rotations = RR_Rotate_0; + return TRUE; }