diff options
author | emersion <contact@emersion.fr> | 2018-06-03 09:18:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-03 09:18:42 +0100 |
commit | 31c8ca7becc1f330bff5dd43f563dfb6aca308a4 (patch) | |
tree | 5e84bdcbe1f3b767e1b686ed3efb43a26b649780 | |
parent | d3670dfeff43cbde98fae47fdb60ef223ce8c220 (diff) | |
parent | 2eb8b240e1f2b266720055c2b7d6b2619aa66e3a (diff) |
Merge pull request #1027 from Timidger/subsurface_data
Added data field to wlr_subsurface
-rw-r--r-- | include/wlr/types/wlr_surface.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/wlr/types/wlr_surface.h b/include/wlr/types/wlr_surface.h index 0fa7e9c2..526e4e2c 100644 --- a/include/wlr/types/wlr_surface.h +++ b/include/wlr/types/wlr_surface.h @@ -62,6 +62,8 @@ struct wlr_subsurface { struct { struct wl_signal destroy; } events; + + void *data; }; struct wlr_surface { |