mirror of
https://github.com/labwc/labwc.git
synced 2026-04-03 07:15:34 -04:00
chase wlroots: add wl_fixes interface (MR 4685)
Ref: 812675ba34ce612e9294e8a9814b1baf4b4775d4 (fixes: add implementation)
This commit is contained in:
parent
0c24252c85
commit
511ed69c53
2 changed files with 5 additions and 1 deletions
|
|
@ -17,6 +17,7 @@
|
|||
#include <wlr/types/wlr_ext_foreign_toplevel_list_v1.h>
|
||||
#include <wlr/types/wlr_ext_image_capture_source_v1.h>
|
||||
#include <wlr/types/wlr_ext_image_copy_capture_v1.h>
|
||||
#include <wlr/types/wlr_fixes.h>
|
||||
#include <wlr/types/wlr_foreign_toplevel_management_v1.h>
|
||||
#include <wlr/types/wlr_fractional_scale_v1.h>
|
||||
#include <wlr/types/wlr_input_method_v2.h>
|
||||
|
|
@ -255,6 +256,7 @@ allow_for_sandbox(const struct wlr_security_context_v1_state *security_state,
|
|||
"wl_data_device_manager", /* would be great if we could drop this one */
|
||||
"wl_seat",
|
||||
"xdg_wm_base",
|
||||
"wl_fixes",
|
||||
/* enhanced */
|
||||
"wl_output",
|
||||
"wl_drm",
|
||||
|
|
@ -433,6 +435,8 @@ server_init(void)
|
|||
wl_display_set_global_filter(server.wl_display, server_global_filter, NULL);
|
||||
server.wl_event_loop = wl_display_get_event_loop(server.wl_display);
|
||||
|
||||
wlr_fixes_create(server.wl_display, 1);
|
||||
|
||||
/* Catch signals */
|
||||
server.sighup_source = wl_event_loop_add_signal(
|
||||
server.wl_event_loop, SIGHUP, handle_sighup, NULL);
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[wrap-git]
|
||||
url = https://gitlab.freedesktop.org/wlroots/wlroots.git
|
||||
revision = 536100488fc4c64528786801860f96cfa1a55765
|
||||
revision = 812675ba34ce612e9294e8a9814b1baf4b4775d4
|
||||
|
||||
[provide]
|
||||
dependency_names = wlroots-0.20
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue