Chris Craik | 0b7e824 | 2015-10-28 16:50:44 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2015 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 | |
| 17 | #ifndef ANDROID_HWUI_LAYER_UPDATE_QUEUE_H |
| 18 | #define ANDROID_HWUI_LAYER_UPDATE_QUEUE_H |
| 19 | |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 20 | #include <utils/StrongPointer.h> |
Chris Craik | 0b7e824 | 2015-10-28 16:50:44 -0700 | [diff] [blame] | 21 | #include "Rect.h" |
Peiyong Lin | 1f6aa12 | 2018-09-10 16:28:08 -0700 | [diff] [blame] | 22 | #include "RenderNode.h" |
Chris Craik | 0b7e824 | 2015-10-28 16:50:44 -0700 | [diff] [blame] | 23 | #include "utils/Macros.h" |
| 24 | |
Chris Craik | 0b7e824 | 2015-10-28 16:50:44 -0700 | [diff] [blame] | 25 | #include <unordered_map> |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 26 | #include <vector> |
Chris Craik | 0b7e824 | 2015-10-28 16:50:44 -0700 | [diff] [blame] | 27 | |
| 28 | namespace android { |
| 29 | namespace uirenderer { |
| 30 | |
| 31 | class RenderNode; |
| 32 | |
| 33 | class LayerUpdateQueue { |
| 34 | PREVENT_COPY_AND_ASSIGN(LayerUpdateQueue); |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 35 | |
Chris Craik | 0b7e824 | 2015-10-28 16:50:44 -0700 | [diff] [blame] | 36 | public: |
| 37 | struct Entry { |
| 38 | Entry(RenderNode* renderNode, const Rect& damage) |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 39 | : renderNode(renderNode), damage(damage) {} |
John Reck | fc29f7acd | 2017-03-02 13:23:16 -0800 | [diff] [blame] | 40 | sp<RenderNode> renderNode; |
Chris Craik | 0b7e824 | 2015-10-28 16:50:44 -0700 | [diff] [blame] | 41 | Rect damage; |
| 42 | }; |
| 43 | |
| 44 | LayerUpdateQueue() {} |
| 45 | void enqueueLayerWithDamage(RenderNode* renderNode, Rect dirty); |
| 46 | void clear(); |
Chris Craik | b250a83 | 2016-01-11 19:28:17 -0800 | [diff] [blame] | 47 | const std::vector<Entry>& entries() const { return mEntries; } |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 48 | |
Chris Craik | 0b7e824 | 2015-10-28 16:50:44 -0700 | [diff] [blame] | 49 | private: |
| 50 | std::vector<Entry> mEntries; |
| 51 | }; |
| 52 | |
Chris Blume | 7b8a808 | 2018-11-30 15:51:58 -0800 | [diff] [blame] | 53 | } // namespace uirenderer |
| 54 | } // namespace android |
Chris Craik | 0b7e824 | 2015-10-28 16:50:44 -0700 | [diff] [blame] | 55 | |
John Reck | 1bcacfd | 2017-11-03 10:12:19 -0700 | [diff] [blame] | 56 | #endif // ANDROID_HWUI_LAYER_UPDATE_QUEUE_H |