aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2017-08-04 16:21:43 -0400
committerGitHub <noreply@github.com>2017-08-04 16:21:43 -0400
commitde17ce19bed4fd8b9f7322e275cdc3cc349db5ab (patch)
treef0f78587c5815a984811d11b3b5ce50d46f49909 /include
parent359042081f7b97ae79dbfba21680e5e5f505c649 (diff)
parenteffea557bbd7ea4d4dda76eaf050cddf54a90346 (diff)
Merge pull request #41 from acrisci/feature/surface-interface-stub
Add surface interface stubs in compositor example
Diffstat (limited to 'include')
-rw-r--r--include/wlr/render.h2
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;
};
/**