From f47445f142884dd6b6c3653bfce1a69b5c14b59a Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Mon, 1 Jun 2020 19:48:39 +0200 Subject: render: introduce wlr_allocator --- render/allocator.c | 20 ++++++++++++++++++++ render/meson.build | 1 + 2 files changed, 21 insertions(+) create mode 100644 render/allocator.c (limited to 'render') diff --git a/render/allocator.c b/render/allocator.c new file mode 100644 index 00000000..3638bd62 --- /dev/null +++ b/render/allocator.c @@ -0,0 +1,20 @@ +#include +#include +#include "render/allocator.h" + +void wlr_allocator_init(struct wlr_allocator *alloc, + const struct wlr_allocator_interface *impl) { + assert(impl && impl->destroy && impl->create_buffer); + alloc->impl = impl; + wl_signal_init(&alloc->events.destroy); +} + +void wlr_allocator_destroy(struct wlr_allocator *alloc) { + wl_signal_emit(&alloc->events.destroy, NULL); + alloc->impl->destroy(alloc); +} + +struct wlr_buffer *wlr_allocator_create_buffer(struct wlr_allocator *alloc, + int width, int height, const struct wlr_drm_format *format) { + return alloc->impl->create_buffer(alloc, width, height, format); +} diff --git a/render/meson.build b/render/meson.build index 9486c22d..58cc6761 100644 --- a/render/meson.build +++ b/render/meson.build @@ -1,4 +1,5 @@ wlr_files += files( + 'allocator.c', 'dmabuf.c', 'egl.c', 'drm_format_set.c', -- cgit v1.2.3