diff options
author | Tom <tomut@yahoo.com> | 2021-06-18 21:42:25 -0600 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-06-20 14:57:26 +0200 |
commit | f232cb8efe67e72d25fd9bcb6788db78c3700008 (patch) | |
tree | 8e1791af9e982a501670dd390e8025518cfef886 /Userland/Services/WindowServer/WindowServer.ipc | |
parent | 61af9d882e33ac3c9bec583e4651326cac338b29 (diff) | |
download | serenity-f232cb8efe67e72d25fd9bcb6788db78c3700008.zip |
WindowServer: Enable screen capture to span multiple screens
This enables the shot utility to capture all screens or just one, and
enables the Magnifier application to track the mouse cursor across
multiple screens.
Diffstat (limited to 'Userland/Services/WindowServer/WindowServer.ipc')
-rw-r--r-- | Userland/Services/WindowServer/WindowServer.ipc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Services/WindowServer/WindowServer.ipc b/Userland/Services/WindowServer/WindowServer.ipc index 7ea2b7580c..8559b1464b 100644 --- a/Userland/Services/WindowServer/WindowServer.ipc +++ b/Userland/Services/WindowServer/WindowServer.ipc @@ -125,7 +125,7 @@ endpoint WindowServer set_scroll_step_size(u32 step_size) => () get_scroll_step_size() => (u32 step_size) - get_screen_bitmap(Optional<Gfx::IntRect> rect) => (Gfx::ShareableBitmap bitmap) + get_screen_bitmap(Optional<Gfx::IntRect> rect, Optional<u32> screen_index) => (Gfx::ShareableBitmap bitmap) get_screen_bitmap_around_cursor(Gfx::IntSize size) => (Gfx::ShareableBitmap bitmap) pong() =| |