blob: cedc333ab87dfe6336ec3c51d9030c8892d17bac [file] [log] [blame]
Chia-I Wuaaff73f2017-02-13 12:28:24 -08001/*
2 * Copyright (C) 2017 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Lloyd Pique3b5a69e2020-01-16 17:51:01 -080017#include <compositionengine/impl/HwcBufferCache.h>
18
Ady Abrahamb0dbdaa2020-01-06 16:19:42 -080019// TODO(b/129481165): remove the #pragma below and fix conversion issues
20#pragma clang diagnostic push
21#pragma clang diagnostic ignored "-Wconversion"
22
Chia-I Wuaaff73f2017-02-13 12:28:24 -080023#include <gui/BufferQueue.h>
Lloyd Pique76ed7032018-12-04 17:24:28 -080024#include <ui/GraphicBuffer.h>
Chia-I Wuaaff73f2017-02-13 12:28:24 -080025
Lloyd Pique3b5a69e2020-01-16 17:51:01 -080026// TODO(b/129481165): remove the #pragma below and fix conversion issues
27#pragma clang diagnostic pop // ignored "-Wconversion"
28
Lloyd Pique76ed7032018-12-04 17:24:28 -080029namespace android::compositionengine::impl {
Chia-I Wuaaff73f2017-02-13 12:28:24 -080030
Lloyd Pique76ed7032018-12-04 17:24:28 -080031HwcBufferCache::HwcBufferCache() {
Marissa Wall947d34e2019-03-29 14:03:53 -070032 std::fill(std::begin(mBuffers), std::end(mBuffers), wp<GraphicBuffer>(nullptr));
Valerie Hau6f89c372019-03-02 00:13:33 +000033}
34
Valerie Hau13f0d1a2019-03-22 10:35:42 -070035void HwcBufferCache::getHwcBuffer(int slot, const sp<GraphicBuffer>& buffer, uint32_t* outSlot,
Wale Ogunwale5723fbd2019-02-28 15:53:59 +000036 sp<GraphicBuffer>* outBuffer) {
Marissa Wall947d34e2019-03-29 14:03:53 -070037 // default is 0
38 if (slot == BufferQueue::INVALID_BUFFER_SLOT || slot < 0 ||
39 slot >= BufferQueue::NUM_BUFFER_SLOTS) {
Valerie Hau13f0d1a2019-03-22 10:35:42 -070040 *outSlot = 0;
41 } else {
Lloyd Pique0a456232020-01-16 17:51:13 -080042 *outSlot = static_cast<uint32_t>(slot);
Valerie Hau13f0d1a2019-03-22 10:35:42 -070043 }
Valerie Haub28f0072019-02-20 10:36:29 -080044
Marissa Wall947d34e2019-03-29 14:03:53 -070045 auto& currentBuffer = mBuffers[*outSlot];
Valerie Hau13f0d1a2019-03-22 10:35:42 -070046 wp<GraphicBuffer> weakCopy(buffer);
47 if (currentBuffer == weakCopy) {
Chia-I Wuaaff73f2017-02-13 12:28:24 -080048 // already cached in HWC, skip sending the buffer
49 *outBuffer = nullptr;
50 } else {
51 *outBuffer = buffer;
52
53 // update cache
Valerie Hau6f89c372019-03-02 00:13:33 +000054 currentBuffer = buffer;
Chia-I Wuaaff73f2017-02-13 12:28:24 -080055 }
Chia-I Wuaaff73f2017-02-13 12:28:24 -080056}
57
Lloyd Pique76ed7032018-12-04 17:24:28 -080058} // namespace android::compositionengine::impl