aboutsummaryrefslogtreecommitdiff
path: root/include/backend/drm/properties.h
diff options
context:
space:
mode:
authorScott Anderson <ascent12@hotmail.com>2018-10-08 21:01:30 +0200
committerGitHub <noreply@github.com>2018-10-08 21:01:30 +0200
commit885586a831437c1f9b5bff74fc48e64c2ed9669e (patch)
tree68d4a1d6347d1c872501929df0b6afbf8a87bc1f /include/backend/drm/properties.h
parent97049576f7d19534aacc685902b582f9d5ad4e83 (diff)
parentf5a147b739ebd33bc61996a179801775192b19ce (diff)
Merge pull request #1280 from emersion/drm-link-status
backend/drm: add support for the link-status property
Diffstat (limited to 'include/backend/drm/properties.h')
-rw-r--r--include/backend/drm/properties.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/backend/drm/properties.h b/include/backend/drm/properties.h
index 5b17e77e..321b4492 100644
--- a/include/backend/drm/properties.h
+++ b/include/backend/drm/properties.h
@@ -14,12 +14,13 @@ union wlr_drm_connector_props {
struct {
uint32_t edid;
uint32_t dpms;
+ uint32_t link_status; // not guaranteed to exist
// atomic-modesetting only
uint32_t crtc_id;
};
- uint32_t props[3];
+ uint32_t props[4];
};
union wlr_drm_crtc_props {