Add wlcore/wl_shm (WIP)

This commit is contained in:
Drew DeVault 2017-06-22 16:32:47 -04:00
parent f252c5a792
commit 2aafb5dd19
12 changed files with 186 additions and 4 deletions

View file

@ -41,3 +41,8 @@ void wlr_render_colored_ellipse(struct wlr_renderer *r,
const float (*color)[4], const float (*matrix)[16]) {
r->impl->render_ellipse(r->state, color, matrix);
}
const enum wl_shm_format *wlr_renderer_get_formats(
struct wlr_renderer *r, size_t *len) {
return r->impl->formats(r->state, len);
}