mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 11:55:59 +01:00
52 lines
1.3 KiB
C
52 lines
1.3 KiB
C
#ifndef BACKEND_DRM_RENDERER_H
|
|
#define BACKEND_DRM_RENDERER_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
|
|
#include <EGL/egl.h>
|
|
#include <gbm.h>
|
|
|
|
#include <wlr/render.h>
|
|
|
|
struct wlr_drm_plane;
|
|
|
|
struct wlr_drm_renderer {
|
|
int fd;
|
|
struct gbm_device *gbm;
|
|
struct wlr_egl egl;
|
|
|
|
struct wlr_renderer *wlr_rend;
|
|
};
|
|
|
|
struct wlr_drm_surface {
|
|
struct wlr_drm_renderer *renderer;
|
|
|
|
uint32_t width;
|
|
uint32_t height;
|
|
|
|
struct gbm_surface *gbm;
|
|
EGLSurface egl;
|
|
|
|
struct gbm_bo *front;
|
|
struct gbm_bo *back;
|
|
};
|
|
|
|
bool wlr_drm_renderer_init(struct wlr_drm_renderer *renderer, int fd);
|
|
void wlr_drm_renderer_finish(struct wlr_drm_renderer *renderer);
|
|
|
|
bool wlr_drm_surface_init(struct wlr_drm_surface *surf,
|
|
struct wlr_drm_renderer *renderer, uint32_t width, uint32_t height,
|
|
uint32_t format, uint32_t flags);
|
|
|
|
bool wlr_drm_plane_surfaces_init(struct wlr_drm_plane *plane, struct wlr_drm_backend *drm,
|
|
int32_t width, uint32_t height, uint32_t format);
|
|
|
|
void wlr_drm_surface_finish(struct wlr_drm_surface *surf);
|
|
void wlr_drm_surface_make_current(struct wlr_drm_surface *surf);
|
|
struct gbm_bo *wlr_drm_surface_swap_buffers(struct wlr_drm_surface *surf);
|
|
struct gbm_bo *wlr_drm_surface_get_front(struct wlr_drm_surface *surf);
|
|
void wlr_drm_surface_post(struct wlr_drm_surface *surf);
|
|
struct gbm_bo *wlr_drm_surface_mgpu_copy(struct wlr_drm_surface *dest, struct gbm_bo *src);
|
|
|
|
#endif
|