summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeon Scroggins III <scroggo@google.com>2023-03-23 18:32:55 -0400
committerLeon Scroggins III <scroggo@google.com>2023-03-23 18:32:55 -0400
commit5f5799169c3c692ae785b079a7d019e3e55ae5c9 (patch)
tree509f6dfd856a9ebb3c4e2b1ed2c1e80cfaab0c42
parente6f8ced56ecc80b00288a21576d376dc02caee7c (diff)
Remove references to MULTI_THREADED_PRESENT
This feature isn't yet used, so remove it until we actually use it in the next release. Bug: 274954820 Test: make Change-Id: I960b3cce292e07b3b7e601e2bdd5019acf34dafc
-rw-r--r--hwc3/ComposerClient.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/hwc3/ComposerClient.cpp b/hwc3/ComposerClient.cpp
index edd8771..c34b13a 100644
--- a/hwc3/ComposerClient.cpp
+++ b/hwc3/ComposerClient.cpp
@@ -171,16 +171,6 @@ ndk::ScopedAStatus ComposerClient::getDisplayCapabilities(int64_t display,
caps->push_back(DisplayCapability::DISPLAY_IDLE_TIMER);
}
- err = mHal->getDisplayMultiThreadedPresentSupport(display, support);
- if (err != ::android::OK) {
- LOG(ERROR) << "failed to getDisplayMultiThreadedPresentSupport: " << err;
- return TO_BINDER_STATUS(err);
- }
-
- if (support) {
- caps->push_back(DisplayCapability::MULTI_THREADED_PRESENT);
- }
-
return TO_BINDER_STATUS(err);
}