summaryrefslogtreecommitdiff
path: root/Userland/Services
diff options
context:
space:
mode:
authorLiav A <liavalb@gmail.com>2022-06-10 13:57:43 +0300
committerLinus Groh <mail@linusgroh.de>2022-07-23 10:42:08 +0100
commit1968aba69bd4740525373a03a5f558254a8aa073 (patch)
tree777f8473fba59f78f7434a2b78206f02d8f52d29 /Userland/Services
parentb5e5b299c4b9979bd7ac56ba09a800c1709c7ce5 (diff)
downloadserenity-1968aba69bd4740525373a03a5f558254a8aa073.zip
Kernel+Userland: Rename FB.h => Graphics.h
This header file represents the entire interface between the kernel and userland, and as such, no longer should be called FB.h but something that represents the whole graphics subsystem.
Diffstat (limited to 'Userland/Services')
-rw-r--r--Userland/Services/WindowServer/HardwareScreenBackend.cpp2
-rw-r--r--Userland/Services/WindowServer/Screen.cpp2
-rw-r--r--Userland/Services/WindowServer/ScreenLayout.ipp2
3 files changed, 3 insertions, 3 deletions
diff --git a/Userland/Services/WindowServer/HardwareScreenBackend.cpp b/Userland/Services/WindowServer/HardwareScreenBackend.cpp
index 85388385dc..ce6f88bd2d 100644
--- a/Userland/Services/WindowServer/HardwareScreenBackend.cpp
+++ b/Userland/Services/WindowServer/HardwareScreenBackend.cpp
@@ -8,7 +8,7 @@
#include "HardwareScreenBackend.h"
#include "ScreenBackend.h"
#include <AK/Try.h>
-#include <Kernel/API/FB.h>
+#include <Kernel/API/Graphics.h>
#include <LibCore/System.h>
#include <fcntl.h>
#include <stdio.h>
diff --git a/Userland/Services/WindowServer/Screen.cpp b/Userland/Services/WindowServer/Screen.cpp
index 71ef260b91..abf32be4a0 100644
--- a/Userland/Services/WindowServer/Screen.cpp
+++ b/Userland/Services/WindowServer/Screen.cpp
@@ -14,7 +14,7 @@
#include "WindowManager.h"
#include <AK/Debug.h>
#include <AK/Format.h>
-#include <Kernel/API/FB.h>
+#include <Kernel/API/Graphics.h>
#include <Kernel/API/MousePacket.h>
#include <fcntl.h>
#include <stdio.h>
diff --git a/Userland/Services/WindowServer/ScreenLayout.ipp b/Userland/Services/WindowServer/ScreenLayout.ipp
index d7359eca8a..65d950d3c2 100644
--- a/Userland/Services/WindowServer/ScreenLayout.ipp
+++ b/Userland/Services/WindowServer/ScreenLayout.ipp
@@ -5,7 +5,7 @@
*/
#include <AK/ScopeGuard.h>
-#include <Kernel/API/FB.h>
+#include <Kernel/API/Graphics.h>
#include <Services/WindowServer/ScreenLayout.h>
#include <errno.h>
#include <fcntl.h>