diff options
Diffstat (limited to 'include/wlr')
-rw-r--r-- | include/wlr/render/pixman.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/include/wlr/render/pixman.h b/include/wlr/render/pixman.h new file mode 100644 index 00000000..713e431d --- /dev/null +++ b/include/wlr/render/pixman.h @@ -0,0 +1,17 @@ +/* + * 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_RENDER_PIXMAN_H +#define WLR_RENDER_PIXMAN_H + +#include <wlr/backend.h> +#include <wlr/render/wlr_renderer.h> + +struct wlr_renderer *wlr_pixman_renderer_create(void); + +#endif |