aboutsummaryrefslogtreecommitdiff
path: root/include/backend/drm-properties.h
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2017-08-09 08:07:12 -0400
committerGitHub <noreply@github.com>2017-08-09 08:07:12 -0400
commitef1f947d49ec37be707739ef12ef56c519d9dfb0 (patch)
tree540544f1afc99d2447d822f1de211c424e45527f /include/backend/drm-properties.h
parent913829e381ff59a120770449ccebcaaeb8a487c1 (diff)
parentaf67966d9261178bebc7a3019881fc1576d311e3 (diff)
Merge pull request #49 from ascent12/drm-atomic
Atomic modesetting
Diffstat (limited to 'include/backend/drm-properties.h')
-rw-r--r--include/backend/drm-properties.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/include/backend/drm-properties.h b/include/backend/drm-properties.h
index 287fc1e0..7a061dd3 100644
--- a/include/backend/drm-properties.h
+++ b/include/backend/drm-properties.h
@@ -27,8 +27,13 @@ union wlr_drm_crtc_props {
// Neither of these are guranteed to exist
uint32_t rotation;
uint32_t scaling_mode;
+
+ // atomic-modesetting only
+
+ uint32_t active;
+ uint32_t mode_id;
};
- uint32_t props[2];
+ uint32_t props[4];
};
union wlr_drm_plane_props {