1
0
Fork 0

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>
This commit is contained in:
Robert Foss 2016-09-30 10:27:23 -04:00
parent 4f7dc9b6d7
commit a09220c013
2 changed files with 10 additions and 0 deletions

View file

@ -126,6 +126,10 @@ int DrmPlane::Init() {
if (ret)
ALOGI("Could not get alpha property");
ret = drm_->GetPlaneProperty(*this, "IN_FENCE_FD", &in_fence_fd_property_);
if (ret)
ALOGI("Could not get IN_FENCE_FD property");
return 0;
}
@ -188,4 +192,8 @@ const DrmProperty &DrmPlane::rotation_property() const {
const DrmProperty &DrmPlane::alpha_property() const {
return alpha_property_;
}
const DrmProperty &DrmPlane::in_fence_fd_property() const {
return in_fence_fd_property_;
}
}

View file

@ -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_;
};
}