aboutsummaryrefslogtreecommitdiff
path: root/include/backend/x11.h
diff options
context:
space:
mode:
authorSimon Ser <contact@emersion.fr>2023-11-23 14:03:14 +0100
committerKirill Primak <vyivel@eclair.cafe>2024-01-25 15:05:36 +0000
commitb62ac611c8825f83c992843e3832474eaa2e4b72 (patch)
treee9cd0501f7faf0f595d2276f58dbbf8b820eda11 /include/backend/x11.h
parented0bba581bdf0dd24e48de69ef51cf2420a50289 (diff)
backend/x11: take wl_event_loop instead of wl_display
Diffstat (limited to 'include/backend/x11.h')
-rw-r--r--include/backend/x11.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/backend/x11.h b/include/backend/x11.h
index 9eb208b1..fcea4d25 100644
--- a/include/backend/x11.h
+++ b/include/backend/x11.h
@@ -62,7 +62,7 @@ struct wlr_x11_touchpoint {
struct wlr_x11_backend {
struct wlr_backend backend;
- struct wl_display *wl_display;
+ struct wl_event_loop *event_loop;
bool started;
xcb_connection_t *xcb;
@@ -108,7 +108,7 @@ struct wlr_x11_backend {
uint8_t present_opcode;
uint8_t xinput_opcode;
- struct wl_listener display_destroy;
+ struct wl_listener event_loop_destroy;
};
struct wlr_x11_buffer {