From 527cc702d906f2a26e4f8adb4064a1ebb9da79bf Mon Sep 17 00:00:00 2001 From: Timidger Date: Thu, 5 Apr 2018 11:47:12 -0400 Subject: [PATCH] Added userdata to wlr_output_layout Needed for https://github.com/swaywm/wlroots-rs/issues/131 --- include/wlr/types/wlr_output_layout.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/wlr/types/wlr_output_layout.h b/include/wlr/types/wlr_output_layout.h index 3c150fc0..91456bc0 100644 --- a/include/wlr/types/wlr_output_layout.h +++ b/include/wlr/types/wlr_output_layout.h @@ -17,6 +17,8 @@ struct wlr_output_layout { struct wl_signal change; struct wl_signal destroy; } events; + + void *data; }; struct wlr_output_layout_output_state;