aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2017-08-10 07:40:37 -0400
committerGitHub <noreply@github.com>2017-08-10 07:40:37 -0400
commit947bb2e43696198373f028567b01a1f2159d3784 (patch)
treecf54dc7841429ee8fe0953ae2327ade52941741e /include
parent750d0ad4583732ee24c998f46a62fc684f86bc48 (diff)
parent14654ecb77aaac5dcf4fd11c9e06c4bf16af7a53 (diff)
Merge pull request #57 from acrisci/feature/create-region
implement compositor create region
Diffstat (limited to 'include')
-rw-r--r--include/wlr/types/wlr_region.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/wlr/types/wlr_region.h b/include/wlr/types/wlr_region.h
index 9fff0150..0aff48a3 100644
--- a/include/wlr/types/wlr_region.h
+++ b/include/wlr/types/wlr_region.h
@@ -5,6 +5,7 @@ struct wl_resource;
// Implements the given resource as region.
// Sets the associated pixman_region32_t as userdata.
-void wlr_region_create(struct wl_resource *res);
+void wlr_region_create(struct wl_client *client, struct wl_resource *res,
+ uint32_t id);
#endif