Snap for 12748980 from e39af97aeaf64c87d2dfaeb960844e52f9a23983 to 25Q1-release
Change-Id: If8169520a103d8f9a70910e1186792e08a681377
diff --git a/hwc3/ComposerClient.cpp b/hwc3/ComposerClient.cpp
index 124f5ea..b33537b 100644
--- a/hwc3/ComposerClient.cpp
+++ b/hwc3/ComposerClient.cpp
@@ -1304,6 +1304,11 @@
return ToBinderStatus(hwc3::Error::kUnsupported);
}
+ndk::ScopedAStatus ComposerClient::getLuts(int64_t, const std::vector<Buffer>&,
+ std::vector<Luts>*) {
+ return ToBinderStatus(hwc3::Error::kUnsupported);
+}
+
std::string ComposerClient::Dump() {
uint32_t size = 0;
hwc_->Dump(&size, nullptr);
diff --git a/hwc3/ComposerClient.h b/hwc3/ComposerClient.h
index e287d58..3d7c09c 100644
--- a/hwc3/ComposerClient.h
+++ b/hwc3/ComposerClient.h
@@ -157,6 +157,8 @@
ndk::ScopedAStatus getMaxLayerPictureProfiles(
int64_t display, int32_t* maxProfiles) override;
+ ndk::ScopedAStatus getLuts(int64_t, const std::vector<Buffer>&,
+ std::vector<Luts>* out_luts) override;
protected:
::ndk::SpAIBinder createBinder() override;