2017-09-30 07:52:58 +00:00
|
|
|
#ifndef BACKEND_DRM_RENDERER_H
|
|
|
|
#define BACKEND_DRM_RENDERER_H
|
|
|
|
|
|
|
|
#include <gbm.h>
|
2018-02-12 20:29:23 +00:00
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdint.h>
|
2018-05-25 10:14:35 +00:00
|
|
|
#include <wlr/backend.h>
|
2018-03-19 22:16:29 +00:00
|
|
|
#include <wlr/render/wlr_renderer.h>
|
2017-10-01 06:22:47 +00:00
|
|
|
|
2017-10-01 09:44:24 +00:00
|
|
|
struct wlr_drm_backend;
|
2017-10-01 06:22:47 +00:00
|
|
|
struct wlr_drm_plane;
|
2020-02-08 06:02:31 +00:00
|
|
|
struct wlr_buffer;
|
2017-10-01 06:22:47 +00:00
|
|
|
|
2017-09-30 07:52:58 +00:00
|
|
|
struct wlr_drm_renderer {
|
2020-12-15 11:21:40 +00:00
|
|
|
struct wlr_drm_backend *backend;
|
2017-09-30 07:52:58 +00:00
|
|
|
struct gbm_device *gbm;
|
2017-10-01 06:22:47 +00:00
|
|
|
|
|
|
|
struct wlr_renderer *wlr_rend;
|
2020-06-01 17:49:51 +00:00
|
|
|
struct wlr_gbm_allocator *allocator;
|
2017-09-30 07:52:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct wlr_drm_surface {
|
2017-10-01 02:55:25 +00:00
|
|
|
struct wlr_drm_renderer *renderer;
|
|
|
|
|
2017-09-30 07:52:58 +00:00
|
|
|
uint32_t width;
|
|
|
|
uint32_t height;
|
|
|
|
|
2020-06-01 17:49:51 +00:00
|
|
|
struct wlr_swapchain *swapchain;
|
|
|
|
struct wlr_buffer *back_buffer;
|
2020-02-08 06:02:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct wlr_drm_fb {
|
2020-12-22 17:23:28 +00:00
|
|
|
struct wlr_buffer *wlr_buf;
|
2020-12-22 17:42:59 +00:00
|
|
|
struct wl_list link; // wlr_drm_backend.fbs
|
|
|
|
|
2020-12-15 11:21:40 +00:00
|
|
|
struct gbm_bo *bo;
|
2020-12-15 08:53:15 +00:00
|
|
|
uint32_t id;
|
2020-12-22 17:42:59 +00:00
|
|
|
|
|
|
|
struct wl_listener wlr_buf_destroy;
|
2017-09-30 07:52:58 +00:00
|
|
|
};
|
|
|
|
|
2018-04-25 22:24:58 +00:00
|
|
|
bool init_drm_renderer(struct wlr_drm_backend *drm,
|
2020-12-19 10:34:28 +00:00
|
|
|
struct wlr_drm_renderer *renderer);
|
2018-04-25 22:24:58 +00:00
|
|
|
void finish_drm_renderer(struct wlr_drm_renderer *renderer);
|
2017-09-30 07:52:58 +00:00
|
|
|
|
2020-02-08 06:02:31 +00:00
|
|
|
bool drm_surface_make_current(struct wlr_drm_surface *surf, int *buffer_age);
|
2020-06-01 17:49:51 +00:00
|
|
|
void drm_surface_unset_current(struct wlr_drm_surface *surf);
|
2017-09-30 07:52:58 +00:00
|
|
|
|
2020-12-22 16:07:29 +00:00
|
|
|
bool drm_fb_lock_surface(struct wlr_drm_fb **fb, struct wlr_drm_backend *drm,
|
2020-12-15 11:21:40 +00:00
|
|
|
struct wlr_drm_surface *surf, struct wlr_drm_surface *mgpu);
|
2020-12-22 16:07:29 +00:00
|
|
|
bool drm_fb_import(struct wlr_drm_fb **fb, struct wlr_drm_backend *drm,
|
2020-12-15 11:21:40 +00:00
|
|
|
struct wlr_buffer *buf, struct wlr_drm_surface *mgpu,
|
2020-12-22 16:44:22 +00:00
|
|
|
const struct wlr_drm_format_set *formats);
|
2020-12-22 17:42:59 +00:00
|
|
|
void drm_fb_destroy(struct wlr_drm_fb *fb);
|
2020-02-08 06:02:31 +00:00
|
|
|
|
2020-12-22 16:07:29 +00:00
|
|
|
void drm_fb_clear(struct wlr_drm_fb **fb);
|
|
|
|
void drm_fb_move(struct wlr_drm_fb **new, struct wlr_drm_fb **old);
|
2020-02-08 06:02:31 +00:00
|
|
|
|
|
|
|
bool drm_surface_render_black_frame(struct wlr_drm_surface *surf);
|
|
|
|
|
|
|
|
bool drm_plane_init_surface(struct wlr_drm_plane *plane,
|
|
|
|
struct wlr_drm_backend *drm, int32_t width, uint32_t height,
|
2020-12-18 11:29:04 +00:00
|
|
|
uint32_t format, bool with_modifiers);
|
2020-02-08 06:02:31 +00:00
|
|
|
void drm_plane_finish_surface(struct wlr_drm_plane *plane);
|
|
|
|
|
2017-09-30 07:52:58 +00:00
|
|
|
#endif
|