diff options
author | emersion <contact@emersion.fr> | 2018-04-05 11:54:00 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-05 11:54:00 -0400 |
commit | c168665043e7c0585652ff414793e44351fc72de (patch) | |
tree | 23ea392058a431d678f7093005955e2354e769ef | |
parent | 9a30a4f557c895e3d9ed9be19813ce43f05e00cb (diff) | |
parent | 527cc702d906f2a26e4f8adb4064a1ebb9da79bf (diff) |
Merge pull request #828 from Timidger/wlr_output_layout_data
Added userdata to wlr_output_layout
-rw-r--r-- | include/wlr/types/wlr_output_layout.h | 2 |
1 files changed, 2 insertions, 0 deletions
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; |