Skip to content

Commit

Permalink
Kernel+Userland: Rename FB.h => Graphics.h
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
supercomputer7 authored and linusg committed Jul 23, 2022
1 parent b5e5b29 commit 1968aba
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion Userland/Libraries/LibEDID/EDID.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

#ifndef KERNEL
# include <AK/ScopeGuard.h>
# include <Kernel/API/FB.h>
# include <Kernel/API/Graphics.h>
# include <fcntl.h>
# include <unistd.h>

Expand Down
2 changes: 1 addition & 1 deletion Userland/Services/WindowServer/HardwareScreenBackend.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion Userland/Services/WindowServer/Screen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion Userland/Services/WindowServer/ScreenLayout.ipp
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit 1968aba

Please sign in to comment.