summaryrefslogtreecommitdiff
path: root/drmplane.h
diff options
context:
space:
mode:
authorRobert Foss <robert.foss@collabora.com>2016-09-30 10:27:23 -0400
committerRobert Foss <robert.foss@collabora.com>2017-09-28 18:24:18 +0200
commita09220c01307eb4497c9d97bea7784d28307ed60 (patch)
tree3a9054abfaf89fbd2750946ba6e79e930f068ea2 /drmplane.h
parent4f7dc9b6d7b31fdf94b96307a256c9bbee6cb0b7 (diff)
drm_hwcomposer: Add support for IN_FENCE_FD property to DrmPlane
Add support for the IN_FENCE_FD property to DrmPlane. Signed-off-by: Robert Foss <robert.foss@collabora.com> Reviewed-by: Sean Paul <seanpaul@chromium.org>
Diffstat (limited to 'drmplane.h')
-rw-r--r--drmplane.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/drmplane.h b/drmplane.h
index 2e06986..5b73b08 100644
--- a/drmplane.h
+++ b/drmplane.h
@@ -54,6 +54,7 @@ class DrmPlane {
const DrmProperty &src_h_property() const;
const DrmProperty &rotation_property() const;
const DrmProperty &alpha_property() const;
+ const DrmProperty &in_fence_fd_property() const;
private:
DrmResources *drm_;
@@ -75,6 +76,7 @@ class DrmPlane {
DrmProperty src_h_property_;
DrmProperty rotation_property_;
DrmProperty alpha_property_;
+ DrmProperty in_fence_fd_property_;
};
}