diff options
author | Tony Crisci <tony@dubstepdish.com> | 2017-08-10 05:57:58 -0400 |
---|---|---|
committer | Tony Crisci <tony@dubstepdish.com> | 2017-08-10 05:59:43 -0400 |
commit | 14654ecb77aaac5dcf4fd11c9e06c4bf16af7a53 (patch) | |
tree | cf54dc7841429ee8fe0953ae2327ade52941741e /include | |
parent | 750d0ad4583732ee24c998f46a62fc684f86bc48 (diff) |
implement compositor create region
Complete the implementation of wlr_region_create and put it in the compositor.
Diffstat (limited to 'include')
-rw-r--r-- | include/wlr/types/wlr_region.h | 3 |
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 |