2020-06-01 19:48:39 +02:00
|
|
|
#ifndef RENDER_ALLOCATOR
|
|
|
|
#define RENDER_ALLOCATOR
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <wayland-server-core.h>
|
|
|
|
#include <wlr/render/dmabuf.h>
|
|
|
|
#include <wlr/render/drm_format_set.h>
|
|
|
|
|
|
|
|
struct wlr_allocator;
|
2021-04-23 23:06:21 +02:00
|
|
|
struct wlr_backend;
|
|
|
|
struct wlr_renderer;
|
2020-06-01 19:48:39 +02:00
|
|
|
|
|
|
|
struct wlr_allocator_interface {
|
|
|
|
struct wlr_buffer *(*create_buffer)(struct wlr_allocator *alloc,
|
|
|
|
int width, int height, const struct wlr_drm_format *format);
|
|
|
|
void (*destroy)(struct wlr_allocator *alloc);
|
|
|
|
};
|
|
|
|
|
|
|
|
struct wlr_allocator {
|
|
|
|
const struct wlr_allocator_interface *impl;
|
|
|
|
|
2021-05-31 20:16:32 +02:00
|
|
|
// Capabilites of the buffers created with this allocator
|
|
|
|
uint32_t buffer_caps;
|
|
|
|
|
2020-06-01 19:48:39 +02:00
|
|
|
struct {
|
|
|
|
struct wl_signal destroy;
|
|
|
|
} events;
|
|
|
|
};
|
|
|
|
|
2021-04-23 23:06:21 +02:00
|
|
|
/**
|
|
|
|
* Creates the adequate wlr_allocator given a backend and a renderer
|
|
|
|
*/
|
|
|
|
struct wlr_allocator *wlr_allocator_autocreate(struct wlr_backend *backend,
|
|
|
|
struct wlr_renderer *renderer);
|
2020-06-01 19:48:39 +02:00
|
|
|
/**
|
|
|
|
* Destroy the allocator.
|
|
|
|
*/
|
|
|
|
void wlr_allocator_destroy(struct wlr_allocator *alloc);
|
|
|
|
/**
|
|
|
|
* Allocate a new buffer.
|
|
|
|
*
|
|
|
|
* When the caller is done with it, they must unreference it by calling
|
|
|
|
* wlr_buffer_drop.
|
|
|
|
*/
|
|
|
|
struct wlr_buffer *wlr_allocator_create_buffer(struct wlr_allocator *alloc,
|
|
|
|
int width, int height, const struct wlr_drm_format *format);
|
|
|
|
|
|
|
|
// For wlr_allocator implementors
|
|
|
|
void wlr_allocator_init(struct wlr_allocator *alloc,
|
2021-05-31 20:16:32 +02:00
|
|
|
const struct wlr_allocator_interface *impl, uint32_t buffer_caps);
|
2020-06-01 19:48:39 +02:00
|
|
|
|
2021-04-29 09:48:33 +02:00
|
|
|
struct wlr_allocator *allocator_autocreate_with_drm_fd(
|
|
|
|
struct wlr_backend *backend, struct wlr_renderer *renderer, int drm_fd);
|
|
|
|
|
2020-06-01 19:48:39 +02:00
|
|
|
#endif
|