diff options
author | Ram Indani <ramindani@google.com> | 2023-02-13 23:00:02 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2023-02-13 23:00:02 +0000 |
commit | 40bddd886e72747f41e312ff70540aeba265d85c (patch) | |
tree | 30fcb2502228aec9d103b4b354ef86837173dd3d /hwc3/impl/HalImpl.cpp | |
parent | a8a661a33bdfedc5d45b8ebeaa07b24c4cdb8106 (diff) | |
parent | 050b97b1df1c15664a505aa5d512db95f155aa6b (diff) |
Merge "[HWC3] native implementation for setRefreshRateChangedCallbackDebugEnabled Add onRefreshRateChangedDebug"
Diffstat (limited to 'hwc3/impl/HalImpl.cpp')
-rw-r--r-- | hwc3/impl/HalImpl.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/hwc3/impl/HalImpl.cpp b/hwc3/impl/HalImpl.cpp index acae3d2..92e120a 100644 --- a/hwc3/impl/HalImpl.cpp +++ b/hwc3/impl/HalImpl.cpp @@ -1064,4 +1064,10 @@ int32_t HalImpl::getDisplayMultiThreadedPresentSupport(const int64_t& display, b return halDisplay->getDisplayMultiThreadedPresentSupport(outSupport); } +int32_t HalImpl::setRefreshRateChangedCallbackDebugEnabled(int64_t /* display*/, + bool /* enabled */) { + // TODO(b/267825022) Add implementation for the HAL + return EX_UNSUPPORTED_OPERATION; +} + } // namespace aidl::android::hardware::graphics::composer3::impl |