diff options
author | Ady Abraham <adyabr@google.com> | 2021-12-07 21:05:57 -0800 |
---|---|---|
committer | Ady Abraham <adyabr@google.com> | 2021-12-07 21:12:30 -0800 |
commit | ee29e798f7d46d156b4534efedf62802e6f3f3fa (patch) | |
tree | abe0ceed540c6df057fa3e58e030e313d4b4984c /hwc3/ComposerClient.cpp | |
parent | be62645bea8621a2086ed29b8526ecbcd0274472 (diff) |
hwc3: LayerCommand moved to DisplayCommand
Bug: 206117357
Test: VTS
Change-Id: Iaecc57aa03c3f5c37ff02b3ba1aedb9ccf169c9a
Diffstat (limited to 'hwc3/ComposerClient.cpp')
-rw-r--r-- | hwc3/ComposerClient.cpp | 5 |
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(); |