diff options
author | Simon Ser <contact@emersion.fr> | 2020-05-09 18:46:17 +0200 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2020-05-10 09:21:04 +0200 |
commit | 2ca3bdc35e6a712917ceedeaeea99b6265b1ebae (patch) | |
tree | 7437be5b58a555a0ddf4b19cf93cfb558cf999e6 /include/backend/drm | |
parent | 06d5aa57809864e45e4c59460ab4e064fd1e2df7 (diff) |
backend/drm: simplify atomic commit logic
We don't need a per-CRTC atomic request anymore. Let's make the request
per-commit so that it's easier to debug.
This is also groundwork for supporting wlr_output_test properly.
Diffstat (limited to 'include/backend/drm')
-rw-r--r-- | include/backend/drm/drm.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/backend/drm/drm.h b/include/backend/drm/drm.h index 578d5d79..d2b3fe3d 100644 --- a/include/backend/drm/drm.h +++ b/include/backend/drm/drm.h @@ -57,7 +57,6 @@ struct wlr_drm_crtc { // Atomic modesetting only uint32_t mode_id; uint32_t gamma_lut; - drmModeAtomicReq *atomic; // Legacy only drmModeCrtc *legacy_crtc; |