summaryrefslogtreecommitdiff
path: root/Servers/WindowServer/WSCompositor.h
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-07-18 10:15:00 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-07-18 10:18:16 +0200
commit1c0669f010b6859721b5a4594b1e38d4098e43f4 (patch)
tree4acdff111c4f491b62b1eb293117cd3605520bd2 /Servers/WindowServer/WSCompositor.h
parent2167f6023509078fe4ab1961c684a239bd18e588 (diff)
downloadserenity-1c0669f010b6859721b5a4594b1e38d4098e43f4.zip
LibDraw: Introduce (formerly known as SharedGraphics.)
Instead of LibGUI and WindowServer building their own copies of the drawing and graphics code, let's it in a separate LibDraw library. This avoids building the code twice, and will encourage better separation of concerns. :^)
Diffstat (limited to 'Servers/WindowServer/WSCompositor.h')
-rw-r--r--Servers/WindowServer/WSCompositor.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Servers/WindowServer/WSCompositor.h b/Servers/WindowServer/WSCompositor.h
index 27635d04ca..e11da2b21f 100644
--- a/Servers/WindowServer/WSCompositor.h
+++ b/Servers/WindowServer/WSCompositor.h
@@ -4,8 +4,8 @@
#include <AK/RefPtr.h>
#include <LibCore/CObject.h>
#include <LibCore/CTimer.h>
-#include <SharedGraphics/DisjointRectSet.h>
-#include <SharedGraphics/GraphicsBitmap.h>
+#include <LibDraw/DisjointRectSet.h>
+#include <LibDraw/GraphicsBitmap.h>
class Painter;
class WSCursor;