2018-07-13 12:40:56 +00:00
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
|
2017-09-23 08:26:01 +00:00
|
|
|
#ifndef WLR_RENDER_INTERFACE_H
|
|
|
|
#define WLR_RENDER_INTERFACE_H
|
|
|
|
|
2018-11-09 19:31:11 +00:00
|
|
|
#include <wlr/config.h>
|
|
|
|
|
2019-10-16 13:16:53 +00:00
|
|
|
#if !WLR_HAS_X11_BACKEND && !WLR_HAS_XWAYLAND
|
|
|
|
#ifndef MESA_EGL_NO_X11_HEADERS
|
2018-11-09 19:31:11 +00:00
|
|
|
#define MESA_EGL_NO_X11_HEADERS
|
|
|
|
#endif
|
2019-10-16 13:16:53 +00:00
|
|
|
#ifndef EGL_NO_X11
|
|
|
|
#define EGL_NO_X11
|
|
|
|
#endif
|
|
|
|
#endif
|
2018-11-09 19:31:11 +00:00
|
|
|
|
2017-10-01 06:22:47 +00:00
|
|
|
#include <EGL/egl.h>
|
|
|
|
#include <EGL/eglext.h>
|
2017-06-08 19:52:42 +00:00
|
|
|
#include <stdbool.h>
|
2018-02-12 20:29:23 +00:00
|
|
|
#include <wayland-server-protocol.h>
|
2018-03-19 22:16:29 +00:00
|
|
|
#include <wlr/render/wlr_renderer.h>
|
|
|
|
#include <wlr/render/wlr_texture.h>
|
2018-01-22 15:42:22 +00:00
|
|
|
#include <wlr/types/wlr_box.h>
|
2018-03-19 22:16:29 +00:00
|
|
|
#include <wlr/types/wlr_output.h>
|
2018-05-29 21:38:00 +00:00
|
|
|
#include <wlr/render/dmabuf.h>
|
2017-06-08 19:52:42 +00:00
|
|
|
|
|
|
|
struct wlr_renderer_impl {
|
2018-03-20 22:10:42 +00:00
|
|
|
void (*begin)(struct wlr_renderer *renderer, uint32_t width,
|
|
|
|
uint32_t height);
|
2017-08-14 12:37:50 +00:00
|
|
|
void (*end)(struct wlr_renderer *renderer);
|
2018-03-15 10:10:56 +00:00
|
|
|
void (*clear)(struct wlr_renderer *renderer, const float color[static 4]);
|
2018-01-22 15:42:22 +00:00
|
|
|
void (*scissor)(struct wlr_renderer *renderer, struct wlr_box *box);
|
2018-03-15 14:33:58 +00:00
|
|
|
bool (*render_texture_with_matrix)(struct wlr_renderer *renderer,
|
|
|
|
struct wlr_texture *texture, const float matrix[static 9],
|
2018-03-15 10:10:56 +00:00
|
|
|
float alpha);
|
2018-03-26 16:41:51 +00:00
|
|
|
void (*render_quad_with_matrix)(struct wlr_renderer *renderer,
|
2018-03-15 14:33:58 +00:00
|
|
|
const float color[static 4], const float matrix[static 9]);
|
2018-03-26 16:41:51 +00:00
|
|
|
void (*render_ellipse_with_matrix)(struct wlr_renderer *renderer,
|
2018-03-15 14:33:58 +00:00
|
|
|
const float color[static 4], const float matrix[static 9]);
|
2017-06-22 20:32:47 +00:00
|
|
|
const enum wl_shm_format *(*formats)(
|
2017-08-14 12:37:50 +00:00
|
|
|
struct wlr_renderer *renderer, size_t *len);
|
2018-10-31 16:20:27 +00:00
|
|
|
bool (*format_supported)(struct wlr_renderer *renderer,
|
|
|
|
enum wl_shm_format fmt);
|
2018-03-24 22:30:28 +00: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);
|
2019-04-01 16:17:23 +00:00
|
|
|
const struct wlr_drm_format_set *(*get_dmabuf_formats)(
|
|
|
|
struct wlr_renderer *renderer);
|
2018-10-31 16:20:27 +00:00
|
|
|
enum wl_shm_format (*preferred_read_format)(struct wlr_renderer *renderer);
|
2018-01-23 21:06:54 +00:00
|
|
|
bool (*read_pixels)(struct wlr_renderer *renderer, enum wl_shm_format fmt,
|
2018-06-23 13:02:43 +00:00
|
|
|
uint32_t *flags, uint32_t stride, uint32_t width, uint32_t height,
|
2018-01-23 21:06:54 +00:00
|
|
|
uint32_t src_x, uint32_t src_y, uint32_t dst_x, uint32_t dst_y,
|
|
|
|
void *data);
|
2018-03-24 22:30:28 +00: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 21:38:00 +00:00
|
|
|
struct wlr_dmabuf_attributes *attribs);
|
2017-08-14 12:37:50 +00:00
|
|
|
void (*destroy)(struct wlr_renderer *renderer);
|
2018-05-21 18:07:08 +00:00
|
|
|
void (*init_wl_display)(struct wlr_renderer *renderer,
|
|
|
|
struct wl_display *wl_display);
|
2017-06-08 19:52:42 +00:00
|
|
|
};
|
|
|
|
|
2017-08-14 12:37:50 +00:00
|
|
|
void wlr_renderer_init(struct wlr_renderer *renderer,
|
2018-03-24 22:30:28 +00:00
|
|
|
const struct wlr_renderer_impl *impl);
|
2017-06-08 19:52:42 +00:00
|
|
|
|
2017-08-08 16:02:14 +00:00
|
|
|
struct wlr_texture_impl {
|
2018-03-24 22:30:28 +00:00
|
|
|
void (*get_size)(struct wlr_texture *texture, int *width, int *height);
|
2018-07-12 22:35:33 +00:00
|
|
|
bool (*is_opaque)(struct wlr_texture *texture);
|
2018-03-24 22:30:28 +00:00
|
|
|
bool (*write_pixels)(struct wlr_texture *texture,
|
2018-10-15 21:56:56 +00:00
|
|
|
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);
|
2018-05-22 23:03:26 +00:00
|
|
|
bool (*to_dmabuf)(struct wlr_texture *texture,
|
2018-05-31 11:33:27 +00:00
|
|
|
struct wlr_dmabuf_attributes *attribs);
|
2017-08-14 12:25:26 +00:00
|
|
|
void (*destroy)(struct wlr_texture *texture);
|
2017-06-08 19:52:42 +00:00
|
|
|
};
|
|
|
|
|
2017-08-14 12:25:26 +00:00
|
|
|
void wlr_texture_init(struct wlr_texture *texture,
|
2018-03-20 18:14:33 +00:00
|
|
|
const struct wlr_texture_impl *impl);
|
2017-06-08 19:52:42 +00:00
|
|
|
|
|
|
|
#endif
|