wlroots/include/wlr/types/wlr_region.h

14 lines
281 B
C
Raw Normal View History

2017-08-09 14:24:28 +00:00
#ifndef _WLR_TYPES_REGION_H
#define _WLR_TYPES_REGION_H
struct wl_resource;
2017-08-14 15:09:56 +00:00
/*
* Implements the given resource as region.
* Sets the associated pixman_region32_t as userdata.
*/
void wlr_region_create(struct wl_client *client, struct wl_resource *res,
uint32_t id);
2017-08-09 14:24:28 +00:00
#endif