summaryrefslogtreecommitdiff
path: root/hwc3/ComposerClient.cpp
diff options
context:
space:
mode:
authorAdy Abraham <adyabr@google.com>2021-12-07 21:05:57 -0800
committerAdy Abraham <adyabr@google.com>2021-12-07 21:12:30 -0800
commitee29e798f7d46d156b4534efedf62802e6f3f3fa (patch)
treeabe0ceed540c6df057fa3e58e030e313d4b4984c /hwc3/ComposerClient.cpp
parentbe62645bea8621a2086ed29b8526ecbcd0274472 (diff)
hwc3: LayerCommand moved to DisplayCommand
Bug: 206117357 Test: VTS Change-Id: Iaecc57aa03c3f5c37ff02b3ba1aedb9ccf169c9a
Diffstat (limited to 'hwc3/ComposerClient.cpp')
-rw-r--r--hwc3/ComposerClient.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/hwc3/ComposerClient.cpp b/hwc3/ComposerClient.cpp
index c0ed7fd..ea2dbcf 100644
--- a/hwc3/ComposerClient.cpp
+++ b/hwc3/ComposerClient.cpp
@@ -106,9 +106,8 @@ ndk::ScopedAStatus ComposerClient::destroyVirtualDisplay(int64_t display) {
return TO_BINDER_STATUS(err);
}
-ndk::ScopedAStatus ComposerClient::executeCommands(
- const std::vector<command::CommandPayload>& commands,
- std::vector<command::CommandResultPayload>* results) {
+ndk::ScopedAStatus ComposerClient::executeCommands(const std::vector<DisplayCommand>& commands,
+ std::vector<CommandResultPayload>* results) {
DEBUG_FUNC();
auto err = mCommandEngine->execute(commands, results);
mCommandEngine->reset();