wlroots-hyprland/include/wlr/types/wlr_region.h

18 lines
426 B
C
Raw Normal View History

/*
* This an unstable interface of wlroots. No guarantees are made regarding the
* future consistency of this API.
*/
#ifndef WLR_USE_UNSTABLE
#error "Add -DWLR_USE_UNSTABLE to enable unstable wlroots features"
#endif
#ifndef WLR_TYPES_WLR_REGION_H
#define WLR_TYPES_WLR_REGION_H
2017-08-09 16:24:28 +02:00
#include <pixman.h>
#include <wayland-server-protocol.h>
2017-08-09 16:24:28 +02:00
pixman_region32_t *wlr_region_from_resource(struct wl_resource *resource);
2017-08-09 16:24:28 +02:00
#endif