mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 20:05:58 +01:00
8f90d7f8f5
Stop assuming that the state to be applied is in output->pending in crtc_commit. This will allow us to remove ephemeral fields in wlr_drm_crtc, which are used scratch fields to stash temporary per-commit data.
28 lines
727 B
C
28 lines
727 B
C
#ifndef BACKEND_DRM_IFACE_H
|
|
#define BACKEND_DRM_IFACE_H
|
|
|
|
#include <gbm.h>
|
|
#include <stdbool.h>
|
|
#include <stdint.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 {
|
|
// Commit al pending changes on a CRTC.
|
|
bool (*crtc_commit)(struct wlr_drm_backend *drm,
|
|
struct wlr_drm_connector *conn, const struct wlr_output_state *state,
|
|
uint32_t flags);
|
|
};
|
|
|
|
extern const struct wlr_drm_interface atomic_iface;
|
|
extern const struct wlr_drm_interface legacy_iface;
|
|
|
|
bool drm_legacy_crtc_set_gamma(struct wlr_drm_backend *drm,
|
|
struct wlr_drm_crtc *crtc, size_t size, uint16_t *lut);
|
|
|
|
#endif
|