2020-12-15 20:49:28 +01:00
|
|
|
#define _POSIX_C_SOURCE 200809L
|
2018-03-15 15:33:58 +01:00
|
|
|
#include <assert.h>
|
2019-09-26 21:52:35 +02:00
|
|
|
#include <drm_fourcc.h>
|
2020-12-15 20:49:28 +01:00
|
|
|
#include <fcntl.h>
|
2017-09-30 09:52:58 +02:00
|
|
|
#include <stdbool.h>
|
2017-10-01 08:22:47 +02:00
|
|
|
#include <stdlib.h>
|
2020-02-08 07:02:31 +01:00
|
|
|
#include <string.h>
|
2017-10-01 08:22:47 +02:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <wayland-util.h>
|
2018-03-19 23:16:29 +01:00
|
|
|
#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"
|
2020-12-15 09:53:15 +01:00
|
|
|
#include "backend/drm/util.h"
|
2020-11-25 16:24:07 +01:00
|
|
|
#include "render/drm_format_set.h"
|
2021-08-25 09:33:19 +02:00
|
|
|
#include "render/allocator/allocator.h"
|
2021-03-23 21:33:47 +01:00
|
|
|
#include "render/pixel_format.h"
|
2020-06-01 19:49:51 +02:00
|
|
|
#include "render/swapchain.h"
|
|
|
|
#include "render/wlr_renderer.h"
|
2017-09-30 09:52:58 +02:00
|
|
|
|
2018-04-26 00:24:58 +02:00
|
|
|
bool init_drm_renderer(struct wlr_drm_backend *drm,
|
2020-12-19 11:34:28 +01:00
|
|
|
struct wlr_drm_renderer *renderer) {
|
2020-12-15 12:21:40 +01:00
|
|
|
renderer->backend = drm;
|
|
|
|
|
2021-04-29 09:46:34 +02:00
|
|
|
renderer->wlr_rend = renderer_autocreate_with_drm_fd(drm->fd);
|
2017-10-01 11:44:24 +02:00
|
|
|
if (!renderer->wlr_rend) {
|
2021-04-29 09:38:10 +02:00
|
|
|
wlr_log(WLR_ERROR, "Failed to create renderer");
|
2021-07-12 17:30:45 +02:00
|
|
|
return false;
|
2017-10-01 11:44:24 +02:00
|
|
|
}
|
2017-10-01 08:22:47 +02:00
|
|
|
|
2021-04-29 09:49:24 +02:00
|
|
|
renderer->allocator = allocator_autocreate_with_drm_fd(&drm->backend,
|
|
|
|
renderer->wlr_rend, drm->fd);
|
2020-06-01 19:49:51 +02:00
|
|
|
if (renderer->allocator == NULL) {
|
|
|
|
wlr_log(WLR_ERROR, "Failed to create allocator");
|
2021-07-12 17:30:45 +02:00
|
|
|
wlr_renderer_destroy(renderer->wlr_rend);
|
|
|
|
return false;
|
2020-06-01 19:49:51 +02:00
|
|
|
}
|
|
|
|
|
2017-09-30 09:52:58 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-04-26 00:24:58 +02:00
|
|
|
void finish_drm_renderer(struct wlr_drm_renderer *renderer) {
|
2017-09-30 09:52:58 +02:00
|
|
|
if (!renderer) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-04-15 20:32:13 +02:00
|
|
|
wlr_allocator_destroy(renderer->allocator);
|
2017-10-01 11:44:24 +02:00
|
|
|
wlr_renderer_destroy(renderer->wlr_rend);
|
2017-09-30 09:52:58 +02:00
|
|
|
}
|
|
|
|
|
2020-12-04 16:41:16 +01:00
|
|
|
bool init_drm_surface(struct wlr_drm_surface *surf,
|
2017-10-01 04:55:25 +02:00
|
|
|
struct wlr_drm_renderer *renderer, uint32_t width, uint32_t height,
|
2020-12-09 12:06:42 +01:00
|
|
|
const struct wlr_drm_format *drm_format) {
|
2017-09-30 09:52:58 +02:00
|
|
|
if (surf->width == width && surf->height == height) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-10-01 04:55:25 +02:00
|
|
|
surf->renderer = renderer;
|
2017-09-30 09:52:58 +02:00
|
|
|
surf->width = width;
|
|
|
|
surf->height = height;
|
|
|
|
|
2020-06-01 19:49:51 +02:00
|
|
|
wlr_swapchain_destroy(surf->swapchain);
|
|
|
|
surf->swapchain = NULL;
|
2019-10-06 23:31:51 +02:00
|
|
|
|
2021-04-15 20:32:13 +02:00
|
|
|
surf->swapchain = wlr_swapchain_create(renderer->allocator, width, height,
|
|
|
|
drm_format);
|
2020-06-01 19:49:51 +02:00
|
|
|
if (surf->swapchain == NULL) {
|
|
|
|
wlr_log(WLR_ERROR, "Failed to create swapchain");
|
|
|
|
memset(surf, 0, sizeof(*surf));
|
|
|
|
return false;
|
2017-09-30 09:52:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-02-08 07:02:31 +01:00
|
|
|
static void finish_drm_surface(struct wlr_drm_surface *surf) {
|
2017-10-01 04:55:25 +02:00
|
|
|
if (!surf || !surf->renderer) {
|
2017-09-30 09:52:58 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-06-01 19:49:51 +02:00
|
|
|
wlr_swapchain_destroy(surf->swapchain);
|
2017-09-30 09:52:58 +02:00
|
|
|
|
|
|
|
memset(surf, 0, sizeof(*surf));
|
|
|
|
}
|
|
|
|
|
2020-12-04 16:41:16 +01:00
|
|
|
struct wlr_buffer *drm_surface_blit(struct wlr_drm_surface *surf,
|
2020-12-15 12:21:40 +01:00
|
|
|
struct wlr_buffer *buffer) {
|
|
|
|
struct wlr_renderer *renderer = surf->renderer->wlr_rend;
|
|
|
|
|
2020-12-15 12:26:00 +01:00
|
|
|
if (surf->width != (uint32_t)buffer->width ||
|
|
|
|
surf->height != (uint32_t)buffer->height) {
|
|
|
|
wlr_log(WLR_ERROR, "Surface size doesn't match buffer size");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2021-04-12 19:45:51 +02:00
|
|
|
struct wlr_texture *tex = wlr_texture_from_buffer(renderer, buffer);
|
2020-12-15 12:21:40 +01:00
|
|
|
if (tex == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2021-07-07 23:02:48 +02:00
|
|
|
struct wlr_buffer *dst = wlr_swapchain_acquire(surf->swapchain, NULL);
|
|
|
|
if (!dst) {
|
2020-12-15 12:21:40 +01:00
|
|
|
wlr_texture_destroy(tex);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
float mat[9];
|
2021-03-04 19:22:28 +01:00
|
|
|
wlr_matrix_identity(mat);
|
2021-03-16 11:20:12 +01:00
|
|
|
wlr_matrix_scale(mat, surf->width, surf->height);
|
2020-12-15 12:21:40 +01:00
|
|
|
|
2021-07-07 23:02:48 +02:00
|
|
|
if (!wlr_renderer_begin_with_buffer(renderer, dst)) {
|
|
|
|
wlr_buffer_unlock(dst);
|
|
|
|
wlr_texture_destroy(tex);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2020-12-15 12:21:40 +01:00
|
|
|
wlr_renderer_clear(renderer, (float[]){ 0.0, 0.0, 0.0, 0.0 });
|
|
|
|
wlr_render_texture_with_matrix(renderer, tex, mat, 1.0f);
|
|
|
|
|
2021-07-07 23:02:48 +02:00
|
|
|
wlr_renderer_end(renderer);
|
2020-12-15 12:21:40 +01:00
|
|
|
|
|
|
|
wlr_texture_destroy(tex);
|
|
|
|
|
2021-07-07 23:02:48 +02:00
|
|
|
return dst;
|
2020-12-15 12:21:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-02-08 07:02:31 +01:00
|
|
|
void drm_plane_finish_surface(struct wlr_drm_plane *plane) {
|
|
|
|
if (!plane) {
|
|
|
|
return;
|
|
|
|
}
|
2017-10-01 08:22:47 +02:00
|
|
|
|
2020-02-08 07:02:31 +01:00
|
|
|
drm_fb_clear(&plane->pending_fb);
|
|
|
|
drm_fb_clear(&plane->queued_fb);
|
|
|
|
drm_fb_clear(&plane->current_fb);
|
2017-10-01 08:22:47 +02:00
|
|
|
|
2020-02-08 07:02:31 +01:00
|
|
|
finish_drm_surface(&plane->mgpu_surf);
|
2017-10-01 08:22:47 +02:00
|
|
|
}
|
|
|
|
|
2020-12-04 16:41:16 +01:00
|
|
|
struct wlr_drm_format *drm_plane_pick_render_format(
|
2021-05-31 19:37:16 +02:00
|
|
|
struct wlr_drm_plane *plane, struct wlr_drm_renderer *renderer) {
|
2020-11-25 16:24:07 +01:00
|
|
|
const struct wlr_drm_format_set *render_formats =
|
2021-05-31 19:37:16 +02:00
|
|
|
wlr_renderer_get_render_formats(renderer->wlr_rend);
|
2020-11-25 16:24:07 +01:00
|
|
|
if (render_formats == NULL) {
|
|
|
|
wlr_log(WLR_ERROR, "Failed to get render formats");
|
2021-05-31 19:37:16 +02:00
|
|
|
return NULL;
|
2020-11-25 16:24:07 +01:00
|
|
|
}
|
2021-05-31 19:37:16 +02:00
|
|
|
|
|
|
|
const struct wlr_drm_format_set *plane_formats = &plane->formats;
|
|
|
|
|
|
|
|
uint32_t fmt = DRM_FORMAT_ARGB8888;
|
2021-03-31 17:07:55 +02:00
|
|
|
if (!wlr_drm_format_set_get(&plane->formats, fmt)) {
|
2021-05-31 19:37:16 +02:00
|
|
|
const struct wlr_pixel_format_info *format_info =
|
|
|
|
drm_get_pixel_format_info(fmt);
|
|
|
|
assert(format_info != NULL &&
|
|
|
|
format_info->opaque_substitute != DRM_FORMAT_INVALID);
|
|
|
|
fmt = format_info->opaque_substitute;
|
|
|
|
}
|
|
|
|
|
2020-11-25 16:24:07 +01:00
|
|
|
const struct wlr_drm_format *render_format =
|
2021-05-31 19:37:16 +02:00
|
|
|
wlr_drm_format_set_get(render_formats, fmt);
|
2020-11-25 16:24:07 +01:00
|
|
|
if (render_format == NULL) {
|
2021-05-31 19:37:16 +02:00
|
|
|
wlr_log(WLR_DEBUG, "Renderer doesn't support format 0x%"PRIX32, fmt);
|
|
|
|
return NULL;
|
2020-11-25 16:24:07 +01:00
|
|
|
}
|
|
|
|
|
2021-05-31 19:37:16 +02:00
|
|
|
const struct wlr_drm_format *plane_format =
|
|
|
|
wlr_drm_format_set_get(plane_formats, fmt);
|
|
|
|
if (plane_format == NULL) {
|
|
|
|
wlr_log(WLR_DEBUG, "Plane %"PRIu32" doesn't support format 0x%"PRIX32,
|
|
|
|
plane->id, fmt);
|
|
|
|
return NULL;
|
2020-11-25 15:30:23 +01:00
|
|
|
}
|
2019-10-22 18:41:47 +02:00
|
|
|
|
2021-05-31 19:37:16 +02:00
|
|
|
struct wlr_drm_format *format =
|
2020-12-18 12:29:04 +01:00
|
|
|
wlr_drm_format_intersect(plane_format, render_format);
|
2021-05-31 19:37:16 +02:00
|
|
|
if (format == NULL) {
|
|
|
|
wlr_log(WLR_DEBUG, "Failed to intersect plane and render "
|
|
|
|
"modifiers for format 0x%"PRIX32, fmt);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return format;
|
|
|
|
}
|
|
|
|
|
2020-12-22 17:07:29 +01:00
|
|
|
void drm_fb_clear(struct wlr_drm_fb **fb_ptr) {
|
|
|
|
if (*fb_ptr == NULL) {
|
2020-07-28 10:47:20 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-12-22 17:07:29 +01:00
|
|
|
struct wlr_drm_fb *fb = *fb_ptr;
|
2020-12-22 18:42:59 +01:00
|
|
|
wlr_buffer_unlock(fb->wlr_buf); // may destroy the buffer
|
2020-07-28 10:47:20 +02:00
|
|
|
|
2020-12-22 17:07:29 +01:00
|
|
|
*fb_ptr = NULL;
|
2020-02-08 07:02:31 +01:00
|
|
|
}
|
|
|
|
|
2021-08-17 09:34:49 +02:00
|
|
|
static void drm_fb_handle_destroy(struct wlr_addon *addon) {
|
|
|
|
struct wlr_drm_fb *fb = wl_container_of(addon, fb, addon);
|
2020-12-22 18:42:59 +01:00
|
|
|
drm_fb_destroy(fb);
|
|
|
|
}
|
|
|
|
|
2021-08-17 09:34:49 +02:00
|
|
|
static const struct wlr_addon_interface fb_addon_impl = {
|
|
|
|
.name = "wlr_drm_fb",
|
|
|
|
.destroy = drm_fb_handle_destroy,
|
|
|
|
};
|
|
|
|
|
2021-08-23 17:41:08 +02:00
|
|
|
static uint32_t get_fb_for_bo(struct wlr_drm_backend *drm,
|
|
|
|
struct wlr_dmabuf_attributes *dmabuf, uint32_t handles[static 4]) {
|
|
|
|
uint64_t modifiers[4] = {0};
|
|
|
|
for (int i = 0; i < dmabuf->n_planes; i++) {
|
|
|
|
// KMS requires all BO planes to have the same modifier
|
|
|
|
modifiers[i] = dmabuf->modifier;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t id = 0;
|
|
|
|
if (drm->addfb2_modifiers && dmabuf->modifier != DRM_FORMAT_MOD_INVALID) {
|
|
|
|
if (drmModeAddFB2WithModifiers(drm->fd, dmabuf->width, dmabuf->height,
|
|
|
|
dmabuf->format, handles, dmabuf->stride, dmabuf->offset,
|
|
|
|
modifiers, &id, DRM_MODE_FB_MODIFIERS) != 0) {
|
|
|
|
wlr_log_errno(WLR_DEBUG, "drmModeAddFB2WithModifiers failed");
|
|
|
|
}
|
|
|
|
} else {
|
2021-03-31 22:05:18 +02:00
|
|
|
if (dmabuf->modifier != DRM_FORMAT_MOD_INVALID &&
|
|
|
|
dmabuf->modifier != DRM_FORMAT_MOD_LINEAR) {
|
|
|
|
wlr_log(WLR_ERROR, "Cannot import DRM framebuffer with explicit "
|
|
|
|
"modifier 0x%"PRIX64, dmabuf->modifier);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-08-23 17:41:08 +02:00
|
|
|
int ret = drmModeAddFB2(drm->fd, dmabuf->width, dmabuf->height,
|
|
|
|
dmabuf->format, handles, dmabuf->stride, dmabuf->offset, &id, 0);
|
|
|
|
if (ret != 0 && dmabuf->format == DRM_FORMAT_ARGB8888 &&
|
|
|
|
dmabuf->n_planes == 1 && dmabuf->offset[0] == 0) {
|
|
|
|
// Some big-endian machines don't support drmModeAddFB2. Try a
|
|
|
|
// last-resort fallback for ARGB8888 buffers, like Xorg's
|
|
|
|
// modesetting driver does.
|
|
|
|
wlr_log(WLR_DEBUG, "drmModeAddFB2 failed (%s), falling back to "
|
|
|
|
"legacy drmModeAddFB", strerror(-ret));
|
|
|
|
|
|
|
|
uint32_t depth = 32;
|
|
|
|
uint32_t bpp = 32;
|
|
|
|
ret = drmModeAddFB(drm->fd, dmabuf->width, dmabuf->height, depth,
|
|
|
|
bpp, dmabuf->stride[0], handles[0], &id);
|
|
|
|
if (ret != 0) {
|
|
|
|
wlr_log_errno(WLR_DEBUG, "drmModeAddFB failed");
|
|
|
|
}
|
|
|
|
} else if (ret != 0) {
|
|
|
|
wlr_log_errno(WLR_DEBUG, "drmModeAddFB2 failed");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
2021-10-04 09:58:37 +02:00
|
|
|
static void close_all_bo_handles(struct wlr_drm_backend *drm,
|
|
|
|
uint32_t handles[static 4]) {
|
|
|
|
for (int i = 0; i < 4; ++i) {
|
|
|
|
if (handles[i] == 0) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If multiple planes share the same BO handle, avoid double-closing it
|
|
|
|
bool already_closed = false;
|
|
|
|
for (int j = 0; j < i; ++j) {
|
|
|
|
if (handles[i] == handles[j]) {
|
|
|
|
already_closed = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (already_closed) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
close_bo_handle(drm->fd, handles[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-22 17:44:22 +01:00
|
|
|
static struct wlr_drm_fb *drm_fb_create(struct wlr_drm_backend *drm,
|
2020-12-22 18:23:28 +01:00
|
|
|
struct wlr_buffer *buf, const struct wlr_drm_format_set *formats) {
|
2020-12-22 17:07:29 +01:00
|
|
|
struct wlr_drm_fb *fb = calloc(1, sizeof(*fb));
|
|
|
|
if (!fb) {
|
2021-04-01 21:14:38 +02:00
|
|
|
wlr_log_errno(WLR_ERROR, "Allocation failed");
|
2020-12-22 17:44:22 +01:00
|
|
|
return NULL;
|
2020-12-22 17:07:29 +01:00
|
|
|
}
|
2020-02-08 07:02:31 +01:00
|
|
|
|
|
|
|
struct wlr_dmabuf_attributes attribs;
|
2020-12-22 18:23:28 +01:00
|
|
|
if (!wlr_buffer_get_dmabuf(buf, &attribs)) {
|
2021-04-01 21:14:38 +02:00
|
|
|
wlr_log(WLR_DEBUG, "Failed to get DMA-BUF from buffer");
|
2020-12-15 12:21:40 +01:00
|
|
|
goto error_get_dmabuf;
|
2020-02-08 07:02:31 +01:00
|
|
|
}
|
|
|
|
|
2020-12-22 17:44:22 +01:00
|
|
|
if (formats && !wlr_drm_format_set_has(formats, attribs.format,
|
|
|
|
attribs.modifier)) {
|
2020-02-08 07:02:31 +01:00
|
|
|
// The format isn't supported by the plane. Try stripping the alpha
|
|
|
|
// channel, if any.
|
2021-04-01 21:14:38 +02:00
|
|
|
const struct wlr_pixel_format_info *info =
|
|
|
|
drm_get_pixel_format_info(attribs.format);
|
|
|
|
if (info != NULL && info->opaque_substitute != DRM_FORMAT_INVALID &&
|
|
|
|
wlr_drm_format_set_has(formats, info->opaque_substitute, attribs.modifier)) {
|
|
|
|
attribs.format = info->opaque_substitute;
|
2020-02-08 07:02:31 +01:00
|
|
|
} else {
|
2021-04-01 21:14:38 +02:00
|
|
|
wlr_log(WLR_DEBUG, "Buffer format 0x%"PRIX32" with modifier "
|
|
|
|
"0x%"PRIX64" cannot be scanned out",
|
|
|
|
attribs.format, attribs.modifier);
|
2020-12-15 12:21:40 +01:00
|
|
|
goto error_get_dmabuf;
|
2020-02-08 07:02:31 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-04 09:58:37 +02:00
|
|
|
uint32_t handles[4] = {0};
|
2021-08-23 17:41:08 +02:00
|
|
|
for (int i = 0; i < attribs.n_planes; ++i) {
|
2021-10-04 09:58:37 +02:00
|
|
|
int ret = drmPrimeFDToHandle(drm->fd, attribs.fd[i], &handles[i]);
|
|
|
|
if (ret != 0) {
|
|
|
|
wlr_log_errno(WLR_DEBUG, "drmPrimeFDToHandle failed");
|
2021-08-23 17:41:08 +02:00
|
|
|
goto error_bo_handle;
|
|
|
|
}
|
2020-02-08 07:02:31 +01:00
|
|
|
}
|
|
|
|
|
2021-10-04 09:58:37 +02:00
|
|
|
fb->id = get_fb_for_bo(drm, &attribs, handles);
|
2020-12-15 12:21:40 +01:00
|
|
|
if (!fb->id) {
|
2021-08-23 17:41:08 +02:00
|
|
|
wlr_log(WLR_DEBUG, "Failed to import BO in KMS");
|
|
|
|
goto error_bo_handle;
|
2020-12-15 12:21:40 +01:00
|
|
|
}
|
2020-02-08 07:02:31 +01:00
|
|
|
|
2021-10-04 09:58:37 +02:00
|
|
|
close_all_bo_handles(drm, handles);
|
|
|
|
|
2021-08-23 17:41:08 +02:00
|
|
|
fb->backend = drm;
|
2020-12-22 18:42:59 +01:00
|
|
|
fb->wlr_buf = buf;
|
|
|
|
|
2021-08-17 09:34:49 +02:00
|
|
|
wlr_addon_init(&fb->addon, &buf->addons, drm, &fb_addon_impl);
|
2020-12-22 18:42:59 +01:00
|
|
|
wl_list_insert(&drm->fbs, &fb->link);
|
|
|
|
|
2020-12-22 17:44:22 +01:00
|
|
|
return fb;
|
2020-12-15 12:21:40 +01:00
|
|
|
|
2021-08-23 17:41:08 +02:00
|
|
|
error_bo_handle:
|
2021-10-04 09:58:37 +02:00
|
|
|
close_all_bo_handles(drm, handles);
|
2020-12-15 12:21:40 +01:00
|
|
|
error_get_dmabuf:
|
2020-12-22 17:07:29 +01:00
|
|
|
free(fb);
|
2020-12-22 17:44:22 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2020-12-22 18:42:59 +01:00
|
|
|
void drm_fb_destroy(struct wlr_drm_fb *fb) {
|
2021-08-23 17:41:08 +02:00
|
|
|
struct wlr_drm_backend *drm = fb->backend;
|
|
|
|
|
2020-12-22 18:42:59 +01:00
|
|
|
wl_list_remove(&fb->link);
|
2021-08-17 09:34:49 +02:00
|
|
|
wlr_addon_finish(&fb->addon);
|
2020-12-22 18:42:59 +01:00
|
|
|
|
2021-08-23 17:41:08 +02:00
|
|
|
if (drmModeRmFB(drm->fd, fb->id) != 0) {
|
2020-12-22 18:42:59 +01:00
|
|
|
wlr_log(WLR_ERROR, "drmModeRmFB failed");
|
|
|
|
}
|
|
|
|
|
|
|
|
free(fb);
|
|
|
|
}
|
|
|
|
|
2020-12-22 17:44:22 +01:00
|
|
|
bool drm_fb_import(struct wlr_drm_fb **fb_ptr, struct wlr_drm_backend *drm,
|
2021-01-24 18:33:56 +01:00
|
|
|
struct wlr_buffer *buf, const struct wlr_drm_format_set *formats) {
|
2021-08-17 09:34:49 +02:00
|
|
|
struct wlr_drm_fb *fb;
|
|
|
|
struct wlr_addon *addon = wlr_addon_find(&buf->addons, drm, &fb_addon_impl);
|
|
|
|
if (addon != NULL) {
|
|
|
|
fb = wl_container_of(addon, fb, addon);
|
|
|
|
} else {
|
2021-01-24 18:33:56 +01:00
|
|
|
fb = drm_fb_create(drm, buf, formats);
|
2020-12-22 18:42:59 +01:00
|
|
|
if (!fb) {
|
|
|
|
return false;
|
|
|
|
}
|
2020-12-22 17:44:22 +01:00
|
|
|
}
|
|
|
|
|
2021-01-24 18:33:56 +01:00
|
|
|
wlr_buffer_lock(buf);
|
2020-12-22 17:44:22 +01:00
|
|
|
drm_fb_move(fb_ptr, &fb);
|
|
|
|
return true;
|
2020-02-08 07:02:31 +01:00
|
|
|
}
|
|
|
|
|
2020-12-22 17:07:29 +01:00
|
|
|
void drm_fb_move(struct wlr_drm_fb **new, struct wlr_drm_fb **old) {
|
2020-02-08 07:02:31 +01:00
|
|
|
drm_fb_clear(new);
|
|
|
|
*new = *old;
|
2020-12-22 17:07:29 +01:00
|
|
|
*old = NULL;
|
2020-02-08 07:02:31 +01:00
|
|
|
}
|