浏览代码

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.
Andreas Kling 6 年之前
父节点
当前提交
f7251c74a9
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Servers/WindowServer/WSCompositor.h

+ 1 - 1
Servers/WindowServer/WSCompositor.h

@@ -35,7 +35,7 @@ public:
     void invalidate_cursor();
     void invalidate_cursor();
     Rect current_cursor_rect() const;
     Rect current_cursor_rect() const;
 
 
-    bool can_flip_buffers() const { return true; }
+    bool can_flip_buffers() const { return false; }
 
 
 private:
 private:
     WSCompositor();
     WSCompositor();