diff options
author | Liav A <liavalb@gmail.com> | 2022-05-13 03:25:16 +0300 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-06-06 20:11:05 +0100 |
commit | f62cd52d12e67309ea179c3a812a1a4e927d5dbe (patch) | |
tree | dd862a112165498c544d3da9b0270ea39b56f3b2 /Userland/Services/WindowServer/Screen.h | |
parent | e2ed6ef74195a22579e712db896745eaaedeb97f (diff) | |
download | serenity-f62cd52d12e67309ea179c3a812a1a4e927d5dbe.zip |
WindowServer: Drop support for the DisplayConnector write interface
All DisplayConnectors should support the mmap interface and it should
provide better performance now, so let's just use it and drop support
for the DisplayConnector's write interface from the WindowServer side.
Diffstat (limited to 'Userland/Services/WindowServer/Screen.h')
-rw-r--r-- | Userland/Services/WindowServer/Screen.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Userland/Services/WindowServer/Screen.h b/Userland/Services/WindowServer/Screen.h index 4b08646df2..6f5565f74d 100644 --- a/Userland/Services/WindowServer/Screen.h +++ b/Userland/Services/WindowServer/Screen.h @@ -176,8 +176,6 @@ public: CompositorScreenData& compositor_screen_data() { return *m_compositor_screen_data; } - void write_all_display_contents(); - private: Screen(size_t); bool open_device(); |