2018-03-24 23:30:28 +01:00
|
|
|
#include <assert.h>
|
2017-06-08 21:52:42 +02:00
|
|
|
#include <stdbool.h>
|
2018-02-12 21:29:23 +01:00
|
|
|
#include <stdlib.h>
|
2021-01-20 21:20:55 +01:00
|
|
|
#include <gbm.h>
|
2021-01-14 04:49:07 +01:00
|
|
|
#include <wlr/render/egl.h>
|
2018-09-01 19:27:18 +02:00
|
|
|
#include <wlr/render/gles2.h>
|
2017-06-08 21:52:42 +02:00
|
|
|
#include <wlr/render/interface.h>
|
2018-03-19 23:16:29 +01:00
|
|
|
#include <wlr/render/wlr_renderer.h>
|
2018-03-15 19:31:02 +01:00
|
|
|
#include <wlr/types/wlr_matrix.h>
|
2018-04-21 00:58:30 +02:00
|
|
|
#include <wlr/util/log.h>
|
2018-04-26 01:11:36 +02:00
|
|
|
#include "util/signal.h"
|
2021-03-15 17:35:47 +01:00
|
|
|
#include "render/pixel_format.h"
|
2020-07-28 16:56:18 +02:00
|
|
|
#include "render/wlr_renderer.h"
|
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-20 19:14:33 +01:00
|
|
|
const struct wlr_renderer_impl *impl) {
|
2018-03-24 23:30:28 +01:00
|
|
|
assert(impl->begin);
|
|
|
|
assert(impl->clear);
|
|
|
|
assert(impl->scissor);
|
2020-04-27 12:27:01 +02:00
|
|
|
assert(impl->render_subtexture_with_matrix);
|
2018-03-27 01:13:13 +02:00
|
|
|
assert(impl->render_quad_with_matrix);
|
2020-11-18 14:57:53 +01:00
|
|
|
assert(impl->get_shm_texture_formats);
|
2018-03-24 23:30:28 +01:00
|
|
|
assert(impl->texture_from_pixels);
|
2017-08-14 14:37:50 +02:00
|
|
|
renderer->impl = impl;
|
2018-04-26 01:11:36 +02:00
|
|
|
|
|
|
|
wl_signal_init(&renderer->events.destroy);
|
2017-06-08 21:52:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void wlr_renderer_destroy(struct wlr_renderer *r) {
|
2018-06-30 04:04:17 +02:00
|
|
|
if (!r) {
|
|
|
|
return;
|
|
|
|
}
|
2018-04-26 01:11:36 +02:00
|
|
|
wlr_signal_emit_safe(&r->events.destroy, r);
|
|
|
|
|
2018-06-30 04:04:17 +02:00
|
|
|
if (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
|
|
|
}
|
|
|
|
|
2020-07-28 16:56:18 +02:00
|
|
|
bool wlr_renderer_bind_buffer(struct wlr_renderer *r,
|
|
|
|
struct wlr_buffer *buffer) {
|
|
|
|
assert(!r->rendering);
|
|
|
|
if (!r->impl->bind_buffer) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return r->impl->bind_buffer(r, buffer);
|
|
|
|
}
|
|
|
|
|
2020-10-11 16:06:26 +02:00
|
|
|
void wlr_renderer_begin(struct wlr_renderer *r, uint32_t width, uint32_t height) {
|
2019-12-28 11:53:11 +01:00
|
|
|
assert(!r->rendering);
|
|
|
|
|
2018-03-20 23:10:42 +01:00
|
|
|
r->impl->begin(r, width, height);
|
2019-12-28 11:53:11 +01:00
|
|
|
|
|
|
|
r->rendering = true;
|
2017-06-08 21:52:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void wlr_renderer_end(struct wlr_renderer *r) {
|
2019-12-28 11:53:11 +01:00
|
|
|
assert(r->rendering);
|
|
|
|
|
2018-03-24 23:30:28 +01:00
|
|
|
if (r->impl->end) {
|
|
|
|
r->impl->end(r);
|
|
|
|
}
|
2019-12-28 11:53:11 +01:00
|
|
|
|
|
|
|
r->rendering = false;
|
2017-06-08 21:52:42 +02:00
|
|
|
}
|
|
|
|
|
2018-03-15 11:10:56 +01:00
|
|
|
void wlr_renderer_clear(struct wlr_renderer *r, const float color[static 4]) {
|
2019-12-28 11:53:11 +01:00
|
|
|
assert(r->rendering);
|
2018-02-03 09:32:02 +01:00
|
|
|
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) {
|
2019-12-28 11:53:11 +01:00
|
|
|
assert(r->rendering);
|
2018-01-22 16:42:22 +01:00
|
|
|
r->impl->scissor(r, box);
|
|
|
|
}
|
|
|
|
|
2018-03-15 19:31:02 +01:00
|
|
|
bool wlr_render_texture(struct wlr_renderer *r, struct wlr_texture *texture,
|
|
|
|
const float projection[static 9], int x, int y, float alpha) {
|
2020-12-25 12:21:29 +01:00
|
|
|
struct wlr_box box = {
|
|
|
|
.x = x,
|
|
|
|
.y = y,
|
|
|
|
.width = texture->width,
|
|
|
|
.height = texture->height,
|
|
|
|
};
|
2018-03-24 23:30:28 +01:00
|
|
|
|
2018-03-26 18:41:51 +02:00
|
|
|
float matrix[9];
|
|
|
|
wlr_matrix_project_box(matrix, &box, WL_OUTPUT_TRANSFORM_NORMAL, 0,
|
|
|
|
projection);
|
2018-03-15 19:31:02 +01:00
|
|
|
|
2018-03-26 18:41:51 +02:00
|
|
|
return wlr_render_texture_with_matrix(r, texture, matrix, alpha);
|
2018-03-15 19:31:02 +01:00
|
|
|
}
|
|
|
|
|
2018-03-15 15:33:58 +01:00
|
|
|
bool wlr_render_texture_with_matrix(struct wlr_renderer *r,
|
|
|
|
struct wlr_texture *texture, const float matrix[static 9],
|
2018-03-15 11:10:56 +01:00
|
|
|
float alpha) {
|
2020-04-27 12:27:01 +02:00
|
|
|
struct wlr_fbox box = {
|
|
|
|
.x = 0,
|
|
|
|
.y = 0,
|
|
|
|
.width = texture->width,
|
|
|
|
.height = texture->height,
|
|
|
|
};
|
|
|
|
return wlr_render_subtexture_with_matrix(r, texture, &box, matrix, alpha);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool wlr_render_subtexture_with_matrix(struct wlr_renderer *r,
|
|
|
|
struct wlr_texture *texture, const struct wlr_fbox *box,
|
|
|
|
const float matrix[static 9], float alpha) {
|
2019-12-28 11:53:11 +01:00
|
|
|
assert(r->rendering);
|
2020-04-27 12:27:01 +02:00
|
|
|
return r->impl->render_subtexture_with_matrix(r, texture,
|
|
|
|
box, matrix, alpha);
|
2017-06-08 21:52:42 +02:00
|
|
|
}
|
2017-06-15 21:31:13 +02:00
|
|
|
|
2018-03-26 18:41:51 +02:00
|
|
|
void wlr_render_rect(struct wlr_renderer *r, const struct wlr_box *box,
|
|
|
|
const float color[static 4], const float projection[static 9]) {
|
2020-08-27 15:40:15 +02:00
|
|
|
if (box->width == 0 || box->height == 0) {
|
|
|
|
return;
|
|
|
|
}
|
2020-06-16 07:21:36 +02:00
|
|
|
assert(box->width > 0 && box->height > 0);
|
2018-03-26 18:41:51 +02:00
|
|
|
float matrix[9];
|
|
|
|
wlr_matrix_project_box(matrix, box, WL_OUTPUT_TRANSFORM_NORMAL, 0,
|
|
|
|
projection);
|
|
|
|
|
|
|
|
wlr_render_quad_with_matrix(r, color, matrix);
|
|
|
|
}
|
|
|
|
|
|
|
|
void wlr_render_quad_with_matrix(struct wlr_renderer *r,
|
2018-03-15 15:33:58 +01:00
|
|
|
const float color[static 4], const float matrix[static 9]) {
|
2019-12-28 11:53:11 +01:00
|
|
|
assert(r->rendering);
|
2018-03-26 18:41:51 +02:00
|
|
|
r->impl->render_quad_with_matrix(r, color, matrix);
|
|
|
|
}
|
|
|
|
|
2021-02-16 19:20:00 +01:00
|
|
|
const uint32_t *wlr_renderer_get_shm_texture_formats(struct wlr_renderer *r,
|
|
|
|
size_t *len) {
|
2020-11-18 14:57:53 +01:00
|
|
|
return r->impl->get_shm_texture_formats(r, len);
|
2017-06-22 22:32:47 +02:00
|
|
|
}
|
2017-08-11 04:15:37 +02:00
|
|
|
|
2018-03-24 23:30:28 +01:00
|
|
|
bool wlr_renderer_resource_is_wl_drm_buffer(struct wlr_renderer *r,
|
|
|
|
struct wl_resource *resource) {
|
|
|
|
if (!r->impl->resource_is_wl_drm_buffer) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return r->impl->resource_is_wl_drm_buffer(r, resource);
|
|
|
|
}
|
|
|
|
|
|
|
|
void wlr_renderer_wl_drm_buffer_get_size(struct wlr_renderer *r,
|
|
|
|
struct wl_resource *buffer, int *width, int *height) {
|
|
|
|
if (!r->impl->wl_drm_buffer_get_size) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
return r->impl->wl_drm_buffer_get_size(r, buffer, width, height);
|
2017-08-11 04:15:37 +02:00
|
|
|
}
|
2017-10-08 02:11:56 +02:00
|
|
|
|
2020-11-18 14:53:13 +01:00
|
|
|
const struct wlr_drm_format_set *wlr_renderer_get_dmabuf_texture_formats(
|
2019-04-01 18:17:23 +02:00
|
|
|
struct wlr_renderer *r) {
|
2020-11-18 14:53:13 +01:00
|
|
|
if (!r->impl->get_dmabuf_texture_formats) {
|
2019-04-01 18:17:23 +02:00
|
|
|
return NULL;
|
2018-04-08 17:00:56 +02:00
|
|
|
}
|
2020-11-18 14:53:13 +01:00
|
|
|
return r->impl->get_dmabuf_texture_formats(r);
|
2018-04-08 17:00:56 +02:00
|
|
|
}
|
|
|
|
|
2021-04-15 16:22:06 +02:00
|
|
|
const struct wlr_drm_format_set *wlr_renderer_get_render_formats(
|
2020-11-18 14:16:22 +01:00
|
|
|
struct wlr_renderer *r) {
|
2021-04-15 16:22:06 +02:00
|
|
|
if (!r->impl->get_render_formats) {
|
2020-11-18 14:16:22 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
2021-04-15 16:22:06 +02:00
|
|
|
return r->impl->get_render_formats(r);
|
2020-11-18 14:16:22 +01:00
|
|
|
}
|
|
|
|
|
2021-02-16 19:34:02 +01:00
|
|
|
bool wlr_renderer_read_pixels(struct wlr_renderer *r, uint32_t fmt,
|
2018-06-23 15:02:43 +02:00
|
|
|
uint32_t *flags, uint32_t stride, uint32_t width, uint32_t height,
|
2018-01-23 22:06:54 +01:00
|
|
|
uint32_t src_x, uint32_t src_y, uint32_t dst_x, uint32_t dst_y,
|
|
|
|
void *data) {
|
2018-03-24 23:30:28 +01:00
|
|
|
if (!r->impl->read_pixels) {
|
|
|
|
return false;
|
|
|
|
}
|
2018-06-23 15:02:43 +02:00
|
|
|
return r->impl->read_pixels(r, fmt, flags, stride, width, height,
|
|
|
|
src_x, src_y, dst_x, dst_y, data);
|
2018-01-23 22:06:54 +01:00
|
|
|
}
|
|
|
|
|
2020-03-23 14:32:27 +01:00
|
|
|
bool wlr_renderer_init_wl_display(struct wlr_renderer *r,
|
2018-05-21 20:07:08 +02:00
|
|
|
struct wl_display *wl_display) {
|
|
|
|
if (wl_display_init_shm(wl_display)) {
|
2018-07-09 23:49:54 +02:00
|
|
|
wlr_log(WLR_ERROR, "Failed to initialize shm");
|
2020-03-23 14:32:27 +01:00
|
|
|
return false;
|
2018-04-21 00:58:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
size_t len;
|
2021-02-16 19:20:00 +01:00
|
|
|
const uint32_t *formats = wlr_renderer_get_shm_texture_formats(r, &len);
|
2018-04-21 00:58:30 +02:00
|
|
|
if (formats == NULL) {
|
2018-07-09 23:49:54 +02:00
|
|
|
wlr_log(WLR_ERROR, "Failed to initialize shm: cannot get formats");
|
2020-03-23 14:32:27 +01:00
|
|
|
return false;
|
2018-04-21 00:58:30 +02:00
|
|
|
}
|
|
|
|
|
2020-11-18 15:01:13 +01:00
|
|
|
bool argb8888 = false, xrgb8888 = false;
|
2018-04-21 00:58:30 +02:00
|
|
|
for (size_t i = 0; i < len; ++i) {
|
2020-11-18 15:01:13 +01:00
|
|
|
// ARGB8888 and XRGB8888 must be supported and are implicitly
|
|
|
|
// advertised by wl_display_init_shm
|
2021-02-16 19:20:00 +01:00
|
|
|
enum wl_shm_format fmt = convert_drm_format_to_wl_shm(formats[i]);
|
|
|
|
switch (fmt) {
|
2020-11-18 15:01:13 +01:00
|
|
|
case WL_SHM_FORMAT_ARGB8888:
|
|
|
|
argb8888 = true;
|
|
|
|
break;
|
|
|
|
case WL_SHM_FORMAT_XRGB8888:
|
|
|
|
xrgb8888 = true;
|
|
|
|
break;
|
|
|
|
default:
|
2021-02-16 19:20:00 +01:00
|
|
|
wl_display_add_shm_format(wl_display, fmt);
|
2018-04-21 15:31:52 +02:00
|
|
|
}
|
2018-04-21 00:58:30 +02:00
|
|
|
}
|
2020-11-18 15:01:13 +01:00
|
|
|
assert(argb8888 && xrgb8888);
|
2018-05-21 20:07:08 +02:00
|
|
|
|
|
|
|
if (r->impl->init_wl_display) {
|
2020-03-23 14:32:27 +01:00
|
|
|
if (!r->impl->init_wl_display(r, wl_display)) {
|
|
|
|
return false;
|
|
|
|
}
|
2018-05-21 20:07:08 +02:00
|
|
|
}
|
2020-03-23 14:32:27 +01:00
|
|
|
|
|
|
|
return true;
|
2018-04-21 00:58:30 +02:00
|
|
|
}
|
2018-05-25 12:14:35 +02:00
|
|
|
|
2021-01-16 22:26:44 +01:00
|
|
|
struct wlr_renderer *wlr_renderer_autocreate_with_drm_fd(int drm_fd) {
|
2021-01-20 21:20:55 +01:00
|
|
|
struct gbm_device *gbm_device = gbm_create_device(drm_fd);
|
|
|
|
if (!gbm_device) {
|
|
|
|
wlr_log(WLR_ERROR, "Failed to create GBM device");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2021-01-29 00:30:36 +01:00
|
|
|
struct wlr_egl *egl = wlr_egl_create(EGL_PLATFORM_GBM_KHR, gbm_device);
|
2021-01-07 06:10:10 +01:00
|
|
|
if (egl == NULL) {
|
2018-07-09 23:49:54 +02:00
|
|
|
wlr_log(WLR_ERROR, "Could not initialize EGL");
|
2021-01-20 21:20:55 +01:00
|
|
|
gbm_device_destroy(gbm_device);
|
2018-05-25 12:14:35 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2021-01-20 21:20:55 +01:00
|
|
|
egl->gbm_device = gbm_device;
|
|
|
|
|
2018-05-25 12:14:35 +02:00
|
|
|
struct wlr_renderer *renderer = wlr_gles2_renderer_create(egl);
|
|
|
|
if (!renderer) {
|
2021-01-09 12:00:31 +01:00
|
|
|
wlr_log(WLR_ERROR, "Failed to create GLES2 renderer");
|
|
|
|
wlr_egl_destroy(egl);
|
2018-05-25 12:14:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return renderer;
|
|
|
|
}
|
2020-06-10 14:47:12 +02:00
|
|
|
|
2021-01-16 22:26:44 +01:00
|
|
|
struct wlr_renderer *wlr_renderer_autocreate(struct wlr_backend *backend) {
|
2021-04-12 10:39:51 +02:00
|
|
|
int drm_fd = wlr_backend_get_drm_fd(backend);
|
2021-01-16 22:26:44 +01:00
|
|
|
if (drm_fd < 0) {
|
|
|
|
wlr_log(WLR_ERROR, "Failed to get DRM FD from backend");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return wlr_renderer_autocreate_with_drm_fd(drm_fd);
|
|
|
|
}
|
|
|
|
|
2020-06-10 14:47:12 +02:00
|
|
|
int wlr_renderer_get_drm_fd(struct wlr_renderer *r) {
|
|
|
|
if (!r->impl->get_drm_fd) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return r->impl->get_drm_fd(r);
|
|
|
|
}
|