render: introduce pixman renderer

This commit is contained in:
Simon Zeni 2021-01-17 23:15:36 -05:00 committed by Simon Ser
parent 9de93a866f
commit 0d90dddfab
8 changed files with 522 additions and 0 deletions

View file

@ -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