Robert Carr | 2047fae | 2016-11-28 14:09:09 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2016 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 | |
Ady Abraham | b0dbdaa | 2020-01-06 16:19:42 -0800 | [diff] [blame] | 17 | // TODO(b/129481165): remove the #pragma below and fix conversion issues |
| 18 | #pragma clang diagnostic push |
| 19 | #pragma clang diagnostic ignored "-Wconversion" |
| 20 | |
Robert Carr | 2047fae | 2016-11-28 14:09:09 -0800 | [diff] [blame] | 21 | #include "LayerVector.h" |
| 22 | #include "Layer.h" |
| 23 | |
| 24 | namespace android { |
Dan Stoza | 412903f | 2017-04-27 13:42:17 -0700 | [diff] [blame] | 25 | |
chaviw | fd46261 | 2018-05-31 16:11:27 -0700 | [diff] [blame] | 26 | LayerVector::LayerVector(const StateSet stateSet) : mStateSet(stateSet) {} |
Dan Stoza | 412903f | 2017-04-27 13:42:17 -0700 | [diff] [blame] | 27 | |
chaviw | fd46261 | 2018-05-31 16:11:27 -0700 | [diff] [blame] | 28 | LayerVector::LayerVector(const LayerVector& rhs, const StateSet stateSet) |
| 29 | : SortedVector<sp<Layer>>(rhs), mStateSet(stateSet) {} |
Robert Carr | 2047fae | 2016-11-28 14:09:09 -0800 | [diff] [blame] | 30 | |
Dan Stoza | 412903f | 2017-04-27 13:42:17 -0700 | [diff] [blame] | 31 | LayerVector::~LayerVector() = default; |
| 32 | |
chaviw | fd46261 | 2018-05-31 16:11:27 -0700 | [diff] [blame] | 33 | // This operator override is needed to prevent mStateSet from getting copied over. |
| 34 | LayerVector& LayerVector::operator=(const LayerVector& rhs) { |
| 35 | SortedVector::operator=(rhs); |
| 36 | return *this; |
| 37 | } |
| 38 | |
Robert Carr | 2047fae | 2016-11-28 14:09:09 -0800 | [diff] [blame] | 39 | int LayerVector::do_compare(const void* lhs, const void* rhs) const |
| 40 | { |
| 41 | // sort layers per layer-stack, then by z-order and finally by sequence |
| 42 | const auto& l = *reinterpret_cast<const sp<Layer>*>(lhs); |
| 43 | const auto& r = *reinterpret_cast<const sp<Layer>*>(rhs); |
| 44 | |
Robert Carr | 6a16031 | 2021-05-17 12:08:20 -0700 | [diff] [blame] | 45 | const auto& lState = l->getDrawingState(); |
| 46 | const auto& rState = r->getDrawingState(); |
chaviw | fd46261 | 2018-05-31 16:11:27 -0700 | [diff] [blame] | 47 | |
Ivan Lozano | 80de6f3 | 2017-10-30 11:24:08 -0700 | [diff] [blame] | 48 | if (l->sequence == r->sequence) |
| 49 | return 0; |
| 50 | |
| 51 | return (l->sequence > r->sequence) ? 1 : -1; |
Robert Carr | 2047fae | 2016-11-28 14:09:09 -0800 | [diff] [blame] | 52 | } |
| 53 | |
Robert Carr | 2047fae | 2016-11-28 14:09:09 -0800 | [diff] [blame] | 54 | } // namespace android |
Ady Abraham | b0dbdaa | 2020-01-06 16:19:42 -0800 | [diff] [blame] | 55 | |
| 56 | // TODO(b/129481165): remove the #pragma below and fix conversion issues |
| 57 | #pragma clang diagnostic pop // ignored "-Wconversion" |