mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 11:55:59 +01:00
5dfaf5ea9c
Using GBM to import DRM dumb buffers tends to not work well. By
using GBM we're calling some driver-specific functions in Mesa.
These functions check whether Mesa can work with the buffer.
Sometimes Mesa has requirements which differ from DRM dumb buffers
and the GBM import will fail (e.g. on amdgpu).
Instead, drop GBM and use drmPrimeFDToHandle directly. But there's
a twist: BO handles are not ref'counted by the kernel and need to
be ref'counted in user-space [1]. libdrm usually performs this
bookkeeping and is used under-the-hood by Mesa.
We can't re-use libdrm for this task without using driver-specific
APIs. So let's just re-implement the ref'counting logic in wlroots.
The wlroots implementation is inspired from amdgpu's in libdrm [2].
Closes: https://github.com/swaywm/wlroots/issues/2916
[1]: https://gitlab.freedesktop.org/mesa/drm/-/merge_requests/110
[2]: 1a4c0ec9ae/amdgpu/handle_table.c
61 lines
1.6 KiB
C
61 lines
1.6 KiB
C
#ifndef BACKEND_DRM_RENDERER_H
|
|
#define BACKEND_DRM_RENDERER_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include <wlr/backend.h>
|
|
#include <wlr/render/wlr_renderer.h>
|
|
|
|
struct wlr_drm_backend;
|
|
struct wlr_drm_plane;
|
|
struct wlr_buffer;
|
|
|
|
struct wlr_drm_renderer {
|
|
struct wlr_drm_backend *backend;
|
|
|
|
struct wlr_renderer *wlr_rend;
|
|
struct wlr_allocator *allocator;
|
|
};
|
|
|
|
struct wlr_drm_surface {
|
|
struct wlr_drm_renderer *renderer;
|
|
|
|
uint32_t width;
|
|
uint32_t height;
|
|
|
|
struct wlr_swapchain *swapchain;
|
|
};
|
|
|
|
struct wlr_drm_fb {
|
|
struct wlr_buffer *wlr_buf;
|
|
struct wlr_addon addon;
|
|
struct wlr_drm_backend *backend;
|
|
struct wl_list link; // wlr_drm_backend.fbs
|
|
|
|
uint32_t handles[WLR_DMABUF_MAX_PLANES];
|
|
uint32_t id;
|
|
};
|
|
|
|
bool init_drm_renderer(struct wlr_drm_backend *drm,
|
|
struct wlr_drm_renderer *renderer);
|
|
void finish_drm_renderer(struct wlr_drm_renderer *renderer);
|
|
|
|
bool init_drm_surface(struct wlr_drm_surface *surf,
|
|
struct wlr_drm_renderer *renderer, uint32_t width, uint32_t height,
|
|
const struct wlr_drm_format *drm_format);
|
|
|
|
bool drm_fb_import(struct wlr_drm_fb **fb, struct wlr_drm_backend *drm,
|
|
struct wlr_buffer *buf, const struct wlr_drm_format_set *formats);
|
|
void drm_fb_destroy(struct wlr_drm_fb *fb);
|
|
|
|
void drm_fb_clear(struct wlr_drm_fb **fb);
|
|
void drm_fb_move(struct wlr_drm_fb **new, struct wlr_drm_fb **old);
|
|
|
|
struct wlr_buffer *drm_surface_blit(struct wlr_drm_surface *surf,
|
|
struct wlr_buffer *buffer);
|
|
|
|
struct wlr_drm_format *drm_plane_pick_render_format(
|
|
struct wlr_drm_plane *plane, struct wlr_drm_renderer *renderer);
|
|
void drm_plane_finish_surface(struct wlr_drm_plane *plane);
|
|
|
|
#endif
|