wlroots-hyprland/include/backend/drm/renderer.h

67 lines
1.7 KiB
C
Raw Normal View History

2017-09-30 09:52:58 +02:00
#ifndef BACKEND_DRM_RENDERER_H
#define BACKEND_DRM_RENDERER_H
#include <EGL/egl.h>
#include <gbm.h>
2018-02-12 21:29:23 +01:00
#include <stdbool.h>
#include <stdint.h>
#include <wlr/backend.h>
#include <wlr/render/wlr_renderer.h>
2017-10-01 08:22:47 +02:00
2017-10-01 11:44:24 +02:00
struct wlr_drm_backend;
2017-10-01 08:22:47 +02:00
struct wlr_drm_plane;
struct wlr_buffer;
2017-10-01 08:22:47 +02:00
2017-09-30 09:52:58 +02:00
struct wlr_drm_renderer {
struct wlr_drm_backend *backend;
2017-09-30 09:52:58 +02:00
struct gbm_device *gbm;
struct wlr_egl egl;
2017-10-01 08:22:47 +02:00
struct wlr_renderer *wlr_rend;
2020-06-01 19:49:51 +02:00
struct wlr_gbm_allocator *allocator;
2017-09-30 09:52:58 +02:00
};
struct wlr_drm_surface {
struct wlr_drm_renderer *renderer;
2017-09-30 09:52:58 +02:00
uint32_t width;
uint32_t height;
2020-06-01 19:49:51 +02:00
struct wlr_swapchain *swapchain;
struct wlr_buffer *back_buffer;
};
struct wlr_drm_fb {
struct wlr_buffer *wlr_buf;
struct wlr_buffer *mgpu_wlr_buf;
struct gbm_bo *bo;
uint32_t id;
2017-09-30 09:52:58 +02:00
};
bool init_drm_renderer(struct wlr_drm_backend *drm,
struct wlr_drm_renderer *renderer, wlr_renderer_create_func_t create_render);
void finish_drm_renderer(struct wlr_drm_renderer *renderer);
2017-09-30 09:52:58 +02:00
bool drm_surface_make_current(struct wlr_drm_surface *surf, int *buffer_age);
2020-06-01 19:49:51 +02:00
void drm_surface_unset_current(struct wlr_drm_surface *surf);
2017-09-30 09:52:58 +02:00
void drm_fb_clear(struct wlr_drm_fb *fb);
bool drm_fb_lock_surface(struct wlr_drm_fb *fb, struct wlr_drm_backend *drm,
struct wlr_drm_surface *surf, struct wlr_drm_surface *mgpu);
bool drm_fb_import(struct wlr_drm_fb *fb, struct wlr_drm_backend *drm,
struct wlr_buffer *buf, struct wlr_drm_surface *mgpu,
struct wlr_drm_format_set *set);
void drm_fb_move(struct wlr_drm_fb *new, struct wlr_drm_fb *old);
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,
uint32_t format, bool with_modifiers);
void drm_plane_finish_surface(struct wlr_drm_plane *plane);
2017-09-30 09:52:58 +02:00
#endif