From 0d90dddfab48a12a7519c11c6062b717ca3b7581 Mon Sep 17 00:00:00 2001 From: Simon Zeni Date: Sun, 17 Jan 2021 23:15:36 -0500 Subject: render: introduce pixman renderer --- include/wlr/render/pixman.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 include/wlr/render/pixman.h (limited to 'include/wlr') 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 +#include + +struct wlr_renderer *wlr_pixman_renderer_create(void); + +#endif -- cgit v1.2.3