summaryrefslogtreecommitdiff
path: root/libs/gui/SurfaceComposerClient.cpp
diff options
context:
space:
mode:
author Kevin DuBois <kevindubois@google.com> 2018-10-16 13:32:31 -0700
committer Kevin DuBois <kevindubois@google.com> 2018-11-28 16:37:53 -0800
commit9c0a1763cd293933f1773f8463daef1de5b8d08d (patch)
tree42bceeee71bd7f4c99ada3b3d694101fd82c62a0 /libs/gui/SurfaceComposerClient.cpp
parent5363caaf84127c4661ab7489f94662fd0f038778 (diff)
[SurfaceFlinger] add getDisplayedContentSamplingAttributes i/f
Add interface to ISurfaceComposer that can query the graphics.composer for querying the displayed content sampling engine's supported attributes. Bug: 116028618 Test: Boot Test: ran test client against prototype, see attributes reported Test: Ran new test './libgui_test --gtest_filter="DisplayedContentSamp*"' Test: on hwc with and without new function hook. Change-Id: Ie4bebd98d134e63a9f3e21f79ae519a1fe8055b0
Diffstat (limited to 'libs/gui/SurfaceComposerClient.cpp')
-rw-r--r--libs/gui/SurfaceComposerClient.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/libs/gui/SurfaceComposerClient.cpp b/libs/gui/SurfaceComposerClient.cpp
index 87c6f27c57..41e5abbd0e 100644
--- a/libs/gui/SurfaceComposerClient.cpp
+++ b/libs/gui/SurfaceComposerClient.cpp
@@ -1077,6 +1077,15 @@ status_t SurfaceComposerClient::getHdrCapabilities(const sp<IBinder>& display,
outCapabilities);
}
+status_t SurfaceComposerClient::getDisplayedContentSamplingAttributes(const sp<IBinder>& display,
+ ui::PixelFormat* outFormat,
+ ui::Dataspace* outDataspace,
+ uint8_t* outComponentMask) {
+ return ComposerService::getComposerService()
+ ->getDisplayedContentSamplingAttributes(display, outFormat, outDataspace,
+ outComponentMask);
+}
+
// ----------------------------------------------------------------------------
status_t ScreenshotClient::capture(const sp<IBinder>& display, const ui::Dataspace reqDataSpace,