From f7251c74a9d4fa1f5063e1626f35a3d2e0f375e8 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Fri, 16 Aug 2019 17:07:40 +0200 Subject: [PATCH] WindowServer: Let's run without buffer flipping by default Instead of having a special mode that we only use in QEMU, let's bring ourselves closer to real hardware by not relying on the QEMU VGA card. --- Servers/WindowServer/WSCompositor.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Servers/WindowServer/WSCompositor.h b/Servers/WindowServer/WSCompositor.h index 496e6512bf..dd4075b2cc 100644 --- a/Servers/WindowServer/WSCompositor.h +++ b/Servers/WindowServer/WSCompositor.h @@ -35,7 +35,7 @@ public: void invalidate_cursor(); Rect current_cursor_rect() const; - bool can_flip_buffers() const { return true; } + bool can_flip_buffers() const { return false; } private: WSCompositor();