summaryrefslogtreecommitdiff
path: root/libs/gui/ISurfaceComposerClient.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libs/gui/ISurfaceComposerClient.cpp')
-rw-r--r--libs/gui/ISurfaceComposerClient.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/libs/gui/ISurfaceComposerClient.cpp b/libs/gui/ISurfaceComposerClient.cpp
index 853e23a8cd..2d2146b356 100644
--- a/libs/gui/ISurfaceComposerClient.cpp
+++ b/libs/gui/ISurfaceComposerClient.cpp
@@ -68,14 +68,6 @@ public:
&ISurfaceComposerClient::getLayerFrameStats)>(Tag::GetLayerFrameStats, handle,
outStats);
}
-
- status_t getTransformToDisplayInverse(const sp<IBinder>& handle,
- bool* outTransformToDisplayInverse) const override {
- return callRemote<decltype(
- &ISurfaceComposerClient::
- getTransformToDisplayInverse)>(Tag::GetTransformToDisplayInverse, handle,
- outTransformToDisplayInverse);
- }
};
// Out-of-line virtual method definition to trigger vtable emission in this
@@ -105,9 +97,6 @@ status_t BnSurfaceComposerClient::onTransact(uint32_t code, const Parcel& data,
case Tag::GetLayerFrameStats: {
return callLocal(data, reply, &ISurfaceComposerClient::getLayerFrameStats);
}
- case Tag::GetTransformToDisplayInverse: {
- return callLocal(data, reply, &ISurfaceComposerClient::getTransformToDisplayInverse);
- }
case Tag::Last:
// Should not be possible because of the check at the beginning of the method
return BBinder::onTransact(code, data, reply, flags);