Merge branch 'add-2125' into 'master'

Add _XWAYLAND_RANDR_EMU_MONITOR_RECTS support

Closes #2125

See merge request wlroots/wlroots!3947
This commit is contained in:
BBaoVanC 2023-07-06 08:12:59 +00:00
commit aa8e1ae51c
3 changed files with 49 additions and 1 deletions

View file

@ -193,6 +193,11 @@ struct wlr_xwayland_resize_event {
uint32_t edges;
};
struct wlr_xwayland_fullscreen_event {
size_t randr_emu_monitor_rects_count;
struct wlr_box *randr_emu_monitor_rects;
};
struct wlr_xwayland_minimize_event {
struct wlr_xwayland_surface *surface;
bool minimize;

View file

@ -88,6 +88,7 @@ enum atom_name {
DND_ACTION_PRIVATE,
NET_CLIENT_LIST,
NET_CLIENT_LIST_STACKING,
XWAYLAND_RANDR_EMU_MONITOR_RECTS,
ATOM_LAST // keep last
};