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

21 lines
485 B
C
Raw Normal View History

/*
* This is a deprecated interface of wlroots. It will be removed in a future
* version. wlr/types/wlr_compositor.h should be used instead.
*/
#ifndef WLR_TYPES_WLR_REGION_H
#define WLR_TYPES_WLR_REGION_H
2017-08-09 16:24:28 +02:00
#include <pixman.h>
2017-08-09 16:24:28 +02:00
struct wl_resource;
/**
* Obtain a Pixman region from a wl_region resource.
*
* To allow clients to create wl_region objects, call wlr_compositor_create().
*/
2022-10-24 13:02:33 +02:00
const pixman_region32_t *wlr_region_from_resource(struct wl_resource *resource);
2017-08-09 16:24:28 +02:00
#endif