2017-06-08 21:52:42 +02:00
|
|
|
#include <stdbool.h>
|
2018-02-12 21:29:23 +01:00
|
|
|
#include <stdlib.h>
|
2017-06-08 21:52:42 +02:00
|
|
|
#include <wlr/render/interface.h>
|
|
|
|
|
2017-08-14 14:37:50 +02:00
|
|
|
void wlr_renderer_init(struct wlr_renderer *renderer,
|
2017-06-08 21:52:42 +02:00
|
|
|
struct wlr_renderer_impl *impl) {
|
2017-08-14 14:37:50 +02:00
|
|
|
renderer->impl = impl;
|
2017-06-08 21:52:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void wlr_renderer_destroy(struct wlr_renderer *r) {
|
2017-08-14 16:16:20 +02:00
|
|
|
if (r && r->impl && r->impl->destroy) {
|
2017-08-14 14:37:50 +02:00
|
|
|
r->impl->destroy(r);
|
2017-08-14 16:16:20 +02:00
|
|
|
} else {
|
|
|
|
free(r);
|
2017-08-14 14:37:50 +02:00
|
|
|
}
|
2017-06-08 21:52:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void wlr_renderer_begin(struct wlr_renderer *r, struct wlr_output *o) {
|
2017-08-14 14:37:50 +02:00
|
|
|
r->impl->begin(r, o);
|
2017-06-08 21:52:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void wlr_renderer_end(struct wlr_renderer *r) {
|
2017-08-14 14:37:50 +02:00
|
|
|
r->impl->end(r);
|
2017-06-08 21:52:42 +02:00
|
|
|
}
|
|
|
|
|
2018-02-03 09:32:02 +01:00
|
|
|
void wlr_renderer_clear(struct wlr_renderer *r, const float (*color)[4]) {
|
|
|
|
r->impl->clear(r, color);
|
2018-01-22 16:42:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void wlr_renderer_scissor(struct wlr_renderer *r, struct wlr_box *box) {
|
|
|
|
r->impl->scissor(r, box);
|
|
|
|
}
|
|
|
|
|
2017-08-19 08:10:39 +02:00
|
|
|
struct wlr_texture *wlr_render_texture_create(struct wlr_renderer *r) {
|
|
|
|
return r->impl->texture_create(r);
|
2017-06-08 21:52:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool wlr_render_with_matrix(struct wlr_renderer *r,
|
2017-08-08 18:02:14 +02:00
|
|
|
struct wlr_texture *texture, const float (*matrix)[16]) {
|
2017-08-14 14:37:50 +02:00
|
|
|
return r->impl->render_with_matrix(r, texture, matrix);
|
2017-06-08 21:52:42 +02:00
|
|
|
}
|
2017-06-15 21:31:13 +02:00
|
|
|
|
|
|
|
void wlr_render_colored_quad(struct wlr_renderer *r,
|
|
|
|
const float (*color)[4], const float (*matrix)[16]) {
|
2017-08-14 14:37:50 +02:00
|
|
|
r->impl->render_quad(r, color, matrix);
|
2017-06-15 21:31:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void wlr_render_colored_ellipse(struct wlr_renderer *r,
|
|
|
|
const float (*color)[4], const float (*matrix)[16]) {
|
2017-08-14 14:37:50 +02:00
|
|
|
r->impl->render_ellipse(r, color, matrix);
|
2017-06-15 21:31:13 +02:00
|
|
|
}
|
2017-06-22 22:32:47 +02:00
|
|
|
|
|
|
|
const enum wl_shm_format *wlr_renderer_get_formats(
|
|
|
|
struct wlr_renderer *r, size_t *len) {
|
2017-08-14 14:37:50 +02:00
|
|
|
return r->impl->formats(r, len);
|
2017-06-22 22:32:47 +02:00
|
|
|
}
|
2017-08-11 04:15:37 +02:00
|
|
|
|
|
|
|
bool wlr_renderer_buffer_is_drm(struct wlr_renderer *r,
|
|
|
|
struct wl_resource *buffer) {
|
2017-08-14 14:37:50 +02:00
|
|
|
return r->impl->buffer_is_drm(r, buffer);
|
2017-08-11 04:15:37 +02:00
|
|
|
}
|
2017-10-08 02:11:56 +02:00
|
|
|
|
2018-01-23 22:06:54 +01:00
|
|
|
bool wlr_renderer_read_pixels(struct wlr_renderer *r, 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) {
|
|
|
|
return r->impl->read_pixels(r, fmt, stride, width, height, src_x, src_y,
|
|
|
|
dst_x, dst_y, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool wlr_renderer_format_supported(struct wlr_renderer *r,
|
|
|
|
enum wl_shm_format fmt) {
|
|
|
|
return r->impl->format_supported(r, fmt);
|
2017-10-08 02:11:56 +02:00
|
|
|
}
|