2018-07-13 14:40:56 +02: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 10:26:01 +02:00
|
|
|
#ifndef WLR_RENDER_INTERFACE_H
|
|
|
|
#define WLR_RENDER_INTERFACE_H
|
|
|
|
|
2017-06-08 21:52:42 +02:00
|
|
|
#include <stdbool.h>
|
2021-02-16 20:00:52 +01:00
|
|
|
#include <wayland-server-core.h>
|
2018-03-19 23:16:29 +01:00
|
|
|
#include <wlr/render/wlr_renderer.h>
|
|
|
|
#include <wlr/render/wlr_texture.h>
|
|
|
|
#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
|
|
|
|
2021-07-01 22:36:01 +02:00
|
|
|
struct wlr_box;
|
|
|
|
struct wlr_fbox;
|
|
|
|
|
2017-06-08 21:52:42 +02:00
|
|
|
struct wlr_renderer_impl {
|
2021-02-02 23:38:42 +01:00
|
|
|
const uint32_t *(*get_shm_texture_formats)(
|
|
|
|
struct wlr_renderer *renderer, size_t *len);
|
2020-11-18 14:53:13 +01:00
|
|
|
const struct wlr_drm_format_set *(*get_dmabuf_texture_formats)(
|
2019-04-01 18:17:23 +02:00
|
|
|
struct wlr_renderer *renderer);
|
2021-04-15 16:22:06 +02:00
|
|
|
const struct wlr_drm_format_set *(*get_render_formats)(
|
2020-11-18 14:16:22 +01:00
|
|
|
struct wlr_renderer *renderer);
|
2017-08-14 14:37:50 +02:00
|
|
|
void (*destroy)(struct wlr_renderer *renderer);
|
2020-06-10 14:47:12 +02:00
|
|
|
int (*get_drm_fd)(struct wlr_renderer *renderer);
|
2021-06-08 18:57:15 +02:00
|
|
|
uint32_t (*get_render_buffer_caps)(struct wlr_renderer *renderer);
|
2021-04-12 18:38:13 +02:00
|
|
|
struct wlr_texture *(*texture_from_buffer)(struct wlr_renderer *renderer,
|
|
|
|
struct wlr_buffer *buffer);
|
2022-06-21 22:39:29 +02:00
|
|
|
struct wlr_render_pass *(*begin_buffer_pass)(struct wlr_renderer *renderer,
|
2023-07-10 11:31:01 +02:00
|
|
|
struct wlr_buffer *buffer, const struct wlr_buffer_pass_options *options);
|
2023-06-02 11:25:07 +02:00
|
|
|
struct wlr_render_timer *(*render_timer_create)(struct wlr_renderer *renderer);
|
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 {
|
2022-05-29 11:50:47 +02:00
|
|
|
bool (*update_from_buffer)(struct wlr_texture *texture,
|
2022-10-24 12:54:03 +02:00
|
|
|
struct wlr_buffer *buffer, const pixman_region32_t *damage);
|
2023-12-01 01:55:12 +01:00
|
|
|
bool (*read_pixels)(struct wlr_texture *texture,
|
|
|
|
const struct wlr_texture_read_pixels_options *options);
|
2023-06-19 07:43:15 +02:00
|
|
|
uint32_t (*preferred_read_format)(struct wlr_texture *texture);
|
2017-08-14 14:25:26 +02:00
|
|
|
void (*destroy)(struct wlr_texture *texture);
|
2017-06-08 21:52:42 +02:00
|
|
|
};
|
|
|
|
|
2022-12-01 10:41:43 +01:00
|
|
|
void wlr_texture_init(struct wlr_texture *texture, struct wlr_renderer *rendener,
|
2020-04-27 12:45:21 +02:00
|
|
|
const struct wlr_texture_impl *impl, uint32_t width, uint32_t height);
|
2017-06-08 21:52:42 +02:00
|
|
|
|
2022-06-21 22:39:29 +02:00
|
|
|
struct wlr_render_pass {
|
|
|
|
const struct wlr_render_pass_impl *impl;
|
|
|
|
};
|
|
|
|
|
|
|
|
void wlr_render_pass_init(struct wlr_render_pass *pass,
|
|
|
|
const struct wlr_render_pass_impl *impl);
|
|
|
|
|
|
|
|
struct wlr_render_pass_impl {
|
|
|
|
bool (*submit)(struct wlr_render_pass *pass);
|
|
|
|
void (*add_texture)(struct wlr_render_pass *pass,
|
|
|
|
const struct wlr_render_texture_options *options);
|
2023-07-19 15:26:28 +02:00
|
|
|
/* Implementers are also guaranteed that options->box is nonempty */
|
2022-06-21 22:39:29 +02:00
|
|
|
void (*add_rect)(struct wlr_render_pass *pass,
|
|
|
|
const struct wlr_render_rect_options *options);
|
|
|
|
};
|
|
|
|
|
2023-06-02 11:25:07 +02:00
|
|
|
struct wlr_render_timer {
|
|
|
|
const struct wlr_render_timer_impl *impl;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct wlr_render_timer_impl {
|
|
|
|
int (*get_duration_ns)(struct wlr_render_timer *timer);
|
|
|
|
void (*destroy)(struct wlr_render_timer *timer);
|
|
|
|
};
|
|
|
|
|
2023-04-14 17:50:26 +02:00
|
|
|
void wlr_render_texture_options_get_src_box(const struct wlr_render_texture_options *options,
|
|
|
|
struct wlr_fbox *box);
|
|
|
|
void wlr_render_texture_options_get_dst_box(const struct wlr_render_texture_options *options,
|
|
|
|
struct wlr_box *box);
|
|
|
|
float wlr_render_texture_options_get_alpha(const struct wlr_render_texture_options *options);
|
2023-08-28 21:00:43 +02:00
|
|
|
void wlr_render_rect_options_get_box(const struct wlr_render_rect_options *options,
|
|
|
|
const struct wlr_buffer *buffer, struct wlr_box *box);
|
2023-04-14 17:50:26 +02:00
|
|
|
|
2023-12-01 01:55:51 +01:00
|
|
|
void wlr_texture_read_pixels_options_get_src_box(
|
|
|
|
const struct wlr_texture_read_pixels_options *options,
|
|
|
|
const struct wlr_texture *texture, struct wlr_box *box);
|
|
|
|
void *wlr_texture_read_pixel_options_get_data(
|
|
|
|
const struct wlr_texture_read_pixels_options *options);
|
|
|
|
|
2017-06-08 21:52:42 +02:00
|
|
|
#endif
|