mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 11:55:59 +01:00
35 lines
1.1 KiB
C
35 lines
1.1 KiB
C
#ifndef BACKEND_DRM_IFACE_H
|
|
#define BACKEND_DRM_IFACE_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
|
|
#include <gbm.h>
|
|
#include <xf86drm.h>
|
|
#include <xf86drmMode.h>
|
|
|
|
struct wlr_drm_backend;
|
|
struct wlr_drm_connector;
|
|
struct wlr_drm_crtc;
|
|
|
|
// Used to provide atomic or legacy DRM functions
|
|
struct wlr_drm_interface {
|
|
// Enable or disable DPMS for connector
|
|
void (*conn_enable)(struct wlr_drm_backend *drm,
|
|
struct wlr_drm_connector *conn, bool enable);
|
|
// Pageflip on crtc. If mode is non-NULL perform a full modeset using it.
|
|
bool (*crtc_pageflip)(struct wlr_drm_backend *drm,
|
|
struct wlr_drm_connector *conn, struct wlr_drm_crtc *crtc,
|
|
uint32_t fb_id, drmModeModeInfo *mode);
|
|
// Enable the cursor buffer on crtc. Set bo to NULL to disable
|
|
bool (*crtc_set_cursor)(struct wlr_drm_backend *drm,
|
|
struct wlr_drm_crtc *crtc, struct gbm_bo *bo);
|
|
// Move the cursor on crtc
|
|
bool (*crtc_move_cursor)(struct wlr_drm_backend *drm,
|
|
struct wlr_drm_crtc *crtc, int x, int y);
|
|
};
|
|
|
|
extern const struct wlr_drm_interface iface_atomic;
|
|
extern const struct wlr_drm_interface iface_legacy;
|
|
|
|
#endif
|