mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2026-04-18 06:47:31 -04:00
Following ideas from [1], snapshot the entire KMS state when the VT is switched away, and restore it when the VT is switched back. > Well the neat trick is that userspace doesn’t need to be able to > understand properties to save and restore them - the actual property > value transport between kernel and userspace is fully generic. That way, even if another DRM master changes a property we don't understand like CTM or HDR_OUTPUT_METADATA, we can switch it back and avoid getting garbage on screen. [1]: https://blog.ffwll.ch/2016/01/vt-switching-with-atomic-modeset.html
31 lines
900 B
C
31 lines
900 B
C
#ifndef BACKEND_DRM_IFACE_H
|
|
#define BACKEND_DRM_IFACE_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;
|
|
struct wlr_drm_connector_state;
|
|
|
|
// Used to provide atomic or legacy DRM functions
|
|
struct wlr_drm_interface {
|
|
// Commit all pending changes on a CRTC.
|
|
bool (*crtc_commit)(struct wlr_drm_connector *conn,
|
|
const struct wlr_drm_connector_state *state, uint32_t flags,
|
|
bool test_only);
|
|
bool (*snapshot_state)(struct wlr_drm_backend *drm);
|
|
bool (*restore_state)(struct wlr_drm_backend *drm);
|
|
};
|
|
|
|
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);
|
|
bool legacy_restore_state(struct wlr_drm_backend *drm);
|
|
|
|
#endif
|