2017-09-23 10:26:01 +02:00
|
|
|
#ifndef WLR_RENDER_INTERFACE_H
|
|
|
|
#define WLR_RENDER_INTERFACE_H
|
|
|
|
|
2017-10-01 08:22:47 +02:00
|
|
|
#include <EGL/egl.h>
|
|
|
|
#include <EGL/eglext.h>
|
2017-06-08 21:52:42 +02:00
|
|
|
#include <stdbool.h>
|
2018-02-12 21:29:23 +01:00
|
|
|
#include <wayland-server-protocol.h>
|
2018-03-19 23:16:29 +01:00
|
|
|
#include <wlr/render/wlr_renderer.h>
|
|
|
|
#include <wlr/render/wlr_texture.h>
|
2018-01-22 16:42:22 +01:00
|
|
|
#include <wlr/types/wlr_box.h>
|
2018-03-19 23:16:29 +01:00
|
|
|
#include <wlr/types/wlr_output.h>
|
2018-05-29 23:38:00 +02:00
|
|
|
#include <wlr/render/dmabuf.h>
|
2017-06-08 21:52:42 +02:00
|
|
|
|
|
|
|
struct wlr_renderer_impl {
|
2018-03-20 23:10:42 +01:00
|
|
|
void (*begin)(struct wlr_renderer *renderer, uint32_t width,
|
|
|
|
uint32_t height);
|
2017-08-14 14:37:50 +02:00
|
|
|
void (*end)(struct wlr_renderer *renderer);
|
2018-03-15 11:10:56 +01:00
|
|
|
void (*clear)(struct wlr_renderer *renderer, const float color[static 4]);
|
2018-01-22 16:42:22 +01:00
|
|
|
void (*scissor)(struct wlr_renderer *renderer, struct wlr_box *box);
|
2018-03-15 15:33:58 +01:00
|
|
|
bool (*render_texture_with_matrix)(struct wlr_renderer *renderer,
|
|
|
|
struct wlr_texture *texture, const float matrix[static 9],
|
2018-03-15 11:10:56 +01:00
|
|
|
float alpha);
|
2018-03-26 18:41:51 +02:00
|
|
|
void (*render_quad_with_matrix)(struct wlr_renderer *renderer,
|
2018-03-15 15:33:58 +01:00
|
|
|
const float color[static 4], const float matrix[static 9]);
|
2018-03-26 18:41:51 +02:00
|
|
|
void (*render_ellipse_with_matrix)(struct wlr_renderer *renderer,
|
2018-03-15 15:33:58 +01:00
|
|
|
const float color[static 4], const float matrix[static 9]);
|
2017-06-22 22:32:47 +02:00
|
|
|
const enum wl_shm_format *(*formats)(
|
2017-08-14 14:37:50 +02:00
|
|
|
struct wlr_renderer *renderer, size_t *len);
|
2018-03-24 23:30:28 +01:00
|
|
|
bool (*resource_is_wl_drm_buffer)(struct wlr_renderer *renderer,
|
|
|
|
struct wl_resource *resource);
|
|
|
|
void (*wl_drm_buffer_get_size)(struct wlr_renderer *renderer,
|
|
|
|
struct wl_resource *buffer, int *width, int *height);
|
2018-04-08 17:00:56 +02:00
|
|
|
int (*get_dmabuf_formats)(struct wlr_renderer *renderer, int **formats);
|
|
|
|
int (*get_dmabuf_modifiers)(struct wlr_renderer *renderer, int format,
|
|
|
|
uint64_t **modifiers);
|
2018-01-23 22:06:54 +01:00
|
|
|
bool (*read_pixels)(struct wlr_renderer *renderer, enum wl_shm_format fmt,
|
|
|
|
uint32_t stride, uint32_t width, uint32_t height,
|
|
|
|
uint32_t src_x, uint32_t src_y, uint32_t dst_x, uint32_t dst_y,
|
|
|
|
void *data);
|
|
|
|
bool (*format_supported)(struct wlr_renderer *renderer,
|
|
|
|
enum wl_shm_format fmt);
|
2018-03-24 23:30:28 +01:00
|
|
|
struct wlr_texture *(*texture_from_pixels)(struct wlr_renderer *renderer,
|
|
|
|
enum wl_shm_format fmt, uint32_t stride, uint32_t width,
|
|
|
|
uint32_t height, const void *data);
|
|
|
|
struct wlr_texture *(*texture_from_wl_drm)(struct wlr_renderer *renderer,
|
|
|
|
struct wl_resource *data);
|
|
|
|
struct wlr_texture *(*texture_from_dmabuf)(struct wlr_renderer *renderer,
|
2018-05-29 23:38:00 +02:00
|
|
|
struct wlr_dmabuf_attributes *attribs);
|
2017-08-14 14:37:50 +02:00
|
|
|
void (*destroy)(struct wlr_renderer *renderer);
|
2018-05-21 20:07:08 +02:00
|
|
|
void (*init_wl_display)(struct wlr_renderer *renderer,
|
|
|
|
struct wl_display *wl_display);
|
2017-06-08 21:52:42 +02:00
|
|
|
};
|
|
|
|
|
2017-08-14 14:37:50 +02:00
|
|
|
void wlr_renderer_init(struct wlr_renderer *renderer,
|
2018-03-24 23:30:28 +01:00
|
|
|
const struct wlr_renderer_impl *impl);
|
2017-06-08 21:52:42 +02:00
|
|
|
|
2017-08-08 18:02:14 +02:00
|
|
|
struct wlr_texture_impl {
|
2018-03-24 23:30:28 +01:00
|
|
|
void (*get_size)(struct wlr_texture *texture, int *width, int *height);
|
|
|
|
bool (*write_pixels)(struct wlr_texture *texture,
|
|
|
|
enum wl_shm_format wl_fmt, uint32_t stride, uint32_t width,
|
|
|
|
uint32_t height, uint32_t src_x, uint32_t src_y, uint32_t dst_x,
|
|
|
|
uint32_t dst_y, const void *data);
|
2017-08-14 14:25:26 +02:00
|
|
|
void (*destroy)(struct wlr_texture *texture);
|
2017-06-08 21:52:42 +02:00
|
|
|
};
|
|
|
|
|
2017-08-14 14:25:26 +02:00
|
|
|
void wlr_texture_init(struct wlr_texture *texture,
|
2018-03-20 19:14:33 +01:00
|
|
|
const struct wlr_texture_impl *impl);
|
2017-06-08 21:52:42 +02:00
|
|
|
|
|
|
|
#endif
|