diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-08-04 16:21:43 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-04 16:21:43 -0400 |
commit | de17ce19bed4fd8b9f7322e275cdc3cc349db5ab (patch) | |
tree | f0f78587c5815a984811d11b3b5ce50d46f49909 /include/wlr | |
parent | 359042081f7b97ae79dbfba21680e5e5f505c649 (diff) | |
parent | effea557bbd7ea4d4dda76eaf050cddf54a90346 (diff) |
Merge pull request #41 from acrisci/feature/surface-interface-stub
Add surface interface stubs in compositor example
Diffstat (limited to 'include/wlr')
-rw-r--r-- | include/wlr/render.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/wlr/render.h b/include/wlr/render.h index 30648a20..4de2432d 100644 --- a/include/wlr/render.h +++ b/include/wlr/render.h @@ -57,6 +57,8 @@ struct wlr_surface { bool valid; uint32_t format; int width, height; + struct wl_signal destroy_signal; + struct wl_resource *resource; }; /** |