wlroots-hyprland/backend/drm/renderer.c

251 lines
6.0 KiB
C
Raw Normal View History

2018-03-15 15:33:58 +01:00
#include <assert.h>
2018-02-12 21:29:23 +01:00
#include <EGL/egl.h>
#include <EGL/eglext.h>
#include <gbm.h>
2017-09-30 09:52:58 +02:00
#include <stdbool.h>
2017-10-01 08:22:47 +02:00
#include <stdlib.h>
#include <unistd.h>
#include <wayland-util.h>
2017-10-21 03:48:58 +02:00
#include <wlr/render/egl.h>
2017-10-01 08:22:47 +02:00
#include <wlr/render/gles2.h>
#include <wlr/render/wlr_renderer.h>
2018-03-15 09:11:03 +01:00
#include <wlr/types/wlr_matrix.h>
2018-02-12 21:29:23 +01:00
#include <wlr/util/log.h>
2017-09-30 09:52:58 +02:00
#include "backend/drm/drm.h"
2017-11-29 22:32:55 +01:00
#include "glapi.h"
2017-09-30 09:52:58 +02:00
#ifndef DRM_FORMAT_MOD_LINEAR
#define DRM_FORMAT_MOD_LINEAR 0
#endif
bool init_drm_renderer(struct wlr_drm_backend *drm,
2017-10-01 11:44:24 +02:00
struct wlr_drm_renderer *renderer) {
renderer->gbm = gbm_create_device(drm->fd);
2017-09-30 09:52:58 +02:00
if (!renderer->gbm) {
wlr_log(L_ERROR, "Failed to create GBM device");
return false;
}
if (!wlr_egl_init(&renderer->egl, EGL_PLATFORM_GBM_MESA, renderer->gbm,
NULL, GBM_FORMAT_ARGB8888)) {
2017-10-01 11:44:24 +02:00
goto error_gbm;
2017-09-30 09:52:58 +02:00
}
2018-04-01 00:49:43 +02:00
renderer->wlr_rend = wlr_gles2_renderer_create(&renderer->egl);
2017-10-01 11:44:24 +02:00
if (!renderer->wlr_rend) {
wlr_log(L_ERROR, "Failed to create WLR renderer");
goto error_egl;
}
2017-10-01 08:22:47 +02:00
2017-10-01 11:44:24 +02:00
renderer->fd = drm->fd;
2017-09-30 09:52:58 +02:00
return true;
2017-10-01 11:44:24 +02:00
error_egl:
wlr_egl_finish(&renderer->egl);
2017-10-01 11:44:24 +02:00
error_gbm:
gbm_device_destroy(renderer->gbm);
return false;
2017-09-30 09:52:58 +02:00
}
void finish_drm_renderer(struct wlr_drm_renderer *renderer) {
2017-09-30 09:52:58 +02:00
if (!renderer) {
return;
}
2017-10-01 11:44:24 +02:00
wlr_renderer_destroy(renderer->wlr_rend);
wlr_egl_finish(&renderer->egl);
2017-09-30 09:52:58 +02:00
gbm_device_destroy(renderer->gbm);
}
bool init_drm_surface(struct wlr_drm_surface *surf,
struct wlr_drm_renderer *renderer, uint32_t width, uint32_t height,
2017-09-30 09:52:58 +02:00
uint32_t format, uint32_t flags) {
if (surf->width == width && surf->height == height) {
return true;
}
surf->renderer = renderer;
2017-09-30 09:52:58 +02:00
surf->width = width;
surf->height = height;
if (surf->gbm) {
if (surf->front) {
gbm_surface_release_buffer(surf->gbm, surf->front);
surf->front = NULL;
}
if (surf->back) {
gbm_surface_release_buffer(surf->gbm, surf->back);
surf->back = NULL;
}
2018-01-29 11:49:31 +01:00
gbm_surface_destroy(surf->gbm);
}
wlr_egl_destroy_surface(&surf->renderer->egl, surf->egl);
2017-09-30 09:52:58 +02:00
surf->gbm = gbm_surface_create(renderer->gbm, width, height,
format, GBM_BO_USE_RENDERING | flags);
if (!surf->gbm) {
wlr_log_errno(L_ERROR, "Failed to create GBM surface");
goto error_zero;
}
surf->egl = wlr_egl_create_surface(&renderer->egl, surf->gbm);
if (surf->egl == EGL_NO_SURFACE) {
wlr_log(L_ERROR, "Failed to create EGL surface");
goto error_gbm;
}
return true;
error_gbm:
gbm_surface_destroy(surf->gbm);
error_zero:
memset(surf, 0, sizeof(*surf));
return false;
}
void finish_drm_surface(struct wlr_drm_surface *surf) {
if (!surf || !surf->renderer) {
2017-09-30 09:52:58 +02:00
return;
}
if (surf->front) {
gbm_surface_release_buffer(surf->gbm, surf->front);
}
if (surf->back) {
gbm_surface_release_buffer(surf->gbm, surf->back);
}
wlr_egl_destroy_surface(&surf->renderer->egl, surf->egl);
2017-09-30 09:52:58 +02:00
if (surf->gbm) {
gbm_surface_destroy(surf->gbm);
}
memset(surf, 0, sizeof(*surf));
}
bool make_drm_surface_current(struct wlr_drm_surface *surf,
int *buffer_damage) {
return wlr_egl_make_current(&surf->renderer->egl, surf->egl, buffer_damage);
2017-09-30 09:52:58 +02:00
}
struct gbm_bo *swap_drm_surface_buffers(struct wlr_drm_surface *surf,
2018-02-09 22:54:14 +01:00
pixman_region32_t *damage) {
2017-09-30 09:52:58 +02:00
if (surf->front) {
gbm_surface_release_buffer(surf->gbm, surf->front);
}
2018-02-09 22:54:14 +01:00
wlr_egl_swap_buffers(&surf->renderer->egl, surf->egl, damage);
2017-09-30 09:52:58 +02:00
surf->front = surf->back;
surf->back = gbm_surface_lock_front_buffer(surf->gbm);
return surf->back;
}
struct gbm_bo *get_drm_surface_front(struct wlr_drm_surface *surf) {
2017-09-30 09:52:58 +02:00
if (surf->front) {
return surf->front;
}
make_drm_surface_current(surf, NULL);
struct wlr_renderer *renderer = surf->renderer->wlr_rend;
wlr_renderer_begin(renderer, surf->width, surf->height);
wlr_renderer_clear(renderer, (float[]){ 0.0, 0.0, 0.0, 1.0 });
wlr_renderer_end(renderer);
return swap_drm_surface_buffers(surf, NULL);
2017-09-30 09:52:58 +02:00
}
2017-10-01 08:22:47 +02:00
void post_drm_surface(struct wlr_drm_surface *surf) {
2017-10-01 08:22:47 +02:00
if (surf->front) {
gbm_surface_release_buffer(surf->gbm, surf->front);
surf->front = NULL;
}
}
struct tex {
struct wlr_egl *egl;
EGLImageKHR img;
struct wlr_texture *tex;
};
static void free_eglimage(struct gbm_bo *bo, void *data) {
struct tex *tex = data;
wlr_egl_destroy_image(tex->egl, tex->img);
wlr_texture_destroy(tex->tex);
free(tex);
}
2018-03-18 11:34:23 +01:00
static struct wlr_texture *get_tex_for_bo(struct wlr_drm_renderer *renderer,
struct gbm_bo *bo) {
2017-10-01 08:22:47 +02:00
struct tex *tex = gbm_bo_get_user_data(bo);
if (tex != NULL) {
2017-10-01 08:22:47 +02:00
return tex->tex;
}
tex = calloc(1, sizeof(struct tex));
if (tex == NULL) {
2017-10-01 08:22:47 +02:00
return NULL;
}
struct wlr_dmabuf_buffer_attribs attribs = {
.n_planes = 1,
.width = gbm_bo_get_width(bo),
.height = gbm_bo_get_height(bo),
.format = gbm_bo_get_format(bo),
2017-10-01 08:22:47 +02:00
};
attribs.offset[0] = 0;
attribs.stride[0] = gbm_bo_get_stride_for_plane(bo, 0);
attribs.modifier[0] = DRM_FORMAT_MOD_LINEAR;
attribs.fd[0] = gbm_bo_get_fd(bo);
tex->tex = wlr_texture_from_dmabuf(renderer->wlr_rend, &attribs);
if (tex->tex == NULL) {
free(tex);
return NULL;
2017-10-01 08:22:47 +02:00
}
gbm_bo_set_user_data(bo, tex, free_eglimage);
return tex->tex;
}
struct gbm_bo *copy_drm_surface_mgpu(struct wlr_drm_surface *dest,
struct gbm_bo *src) {
make_drm_surface_current(dest, NULL);
2017-10-01 08:22:47 +02:00
struct wlr_texture *tex = get_tex_for_bo(dest->renderer, src);
2018-03-15 15:33:58 +01:00
assert(tex);
2017-10-01 08:22:47 +02:00
2018-03-18 11:34:23 +01:00
float mat[9];
wlr_matrix_projection(mat, 1, 1, WL_OUTPUT_TRANSFORM_FLIPPED_180);
2017-10-01 08:22:47 +02:00
struct wlr_renderer *renderer = dest->renderer->wlr_rend;
wlr_renderer_begin(renderer, dest->width, dest->height);
wlr_renderer_clear(renderer, (float[]){ 0.0, 0.0, 0.0, 1.0 });
wlr_render_texture_with_matrix(renderer, tex, mat, 1.0f);
wlr_renderer_end(renderer);
2017-10-01 08:22:47 +02:00
return swap_drm_surface_buffers(dest, NULL);
2017-10-01 08:22:47 +02:00
}
bool init_drm_plane_surfaces(struct wlr_drm_plane *plane,
2018-03-18 11:34:23 +01:00
struct wlr_drm_backend *drm, int32_t width, uint32_t height,
uint32_t format) {
2017-10-01 08:22:47 +02:00
if (!drm->parent) {
return init_drm_surface(&plane->surf, &drm->renderer, width, height,
2017-10-01 08:22:47 +02:00
format, GBM_BO_USE_SCANOUT);
}
if (!init_drm_surface(&plane->surf, &drm->parent->renderer,
2017-10-01 08:22:47 +02:00
width, height, format, GBM_BO_USE_LINEAR)) {
return false;
}
if (!init_drm_surface(&plane->mgpu_surf, &drm->renderer,
2017-10-01 08:22:47 +02:00
width, height, format, GBM_BO_USE_SCANOUT)) {
finish_drm_surface(&plane->surf);
2017-10-01 08:22:47 +02:00
return false;
}
return true;
}