| Chris Craik | 0776a60 | 2013-02-14 15:36:01 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2013 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 | |
| Chris Craik | f57776b | 2013-10-25 18:30:17 -0700 | [diff] [blame] | 17 | #define ATRACE_TAG ATRACE_TAG_VIEW |
| 18 | |
| Romain Guy | c46d07a | 2013-03-15 19:06:39 -0700 | [diff] [blame] | 19 | #include <SkCanvas.h> |
| Chris Craik | 9f68c09 | 2014-01-10 10:30:57 -0800 | [diff] [blame] | 20 | #include <algorithm> |
| Romain Guy | c46d07a | 2013-03-15 19:06:39 -0700 | [diff] [blame] | 21 | |
| Chris Craik | f57776b | 2013-10-25 18:30:17 -0700 | [diff] [blame] | 22 | #include <utils/Trace.h> |
| 23 | |
| Chris Craik | c3566d0 | 2013-02-04 16:16:33 -0800 | [diff] [blame] | 24 | #include "Debug.h" |
| Chris Craik | 0776a60 | 2013-02-14 15:36:01 -0800 | [diff] [blame] | 25 | #include "DisplayList.h" |
| 26 | #include "DisplayListOp.h" |
| 27 | #include "DisplayListLogBuffer.h" |
| 28 | |
| 29 | namespace android { |
| 30 | namespace uirenderer { |
| 31 | |
| Chris Craik | 3f085429 | 2014-04-15 16:18:08 -0700 | [diff] [blame] | 32 | DisplayListData::DisplayListData() |
| 33 | : projectionReceiveIndex(-1) |
| Chris Craik | 3f085429 | 2014-04-15 16:18:08 -0700 | [diff] [blame] | 34 | , hasDrawOps(false) { |
| John Reck | 087bc0c | 2014-04-04 16:20:08 -0700 | [diff] [blame] | 35 | } |
| 36 | |
| 37 | DisplayListData::~DisplayListData() { |
| 38 | cleanupResources(); |
| 39 | } |
| 40 | |
| John Reck | 44fd8d2 | 2014-02-26 11:00:11 -0800 | [diff] [blame] | 41 | void DisplayListData::cleanupResources() { |
| John Reck | a35778c7 | 2014-11-06 09:45:10 -0800 | [diff] [blame] | 42 | ResourceCache& resourceCache = ResourceCache::getInstance(); |
| 43 | resourceCache.lock(); |
| John Reck | 44fd8d2 | 2014-02-26 11:00:11 -0800 | [diff] [blame] | 44 | |
| 45 | for (size_t i = 0; i < bitmapResources.size(); i++) { |
| John Reck | a35778c7 | 2014-11-06 09:45:10 -0800 | [diff] [blame] | 46 | resourceCache.decrementRefcountLocked(bitmapResources.itemAt(i)); |
| John Reck | 44fd8d2 | 2014-02-26 11:00:11 -0800 | [diff] [blame] | 47 | } |
| 48 | |
| 49 | for (size_t i = 0; i < ownedBitmapResources.size(); i++) { |
| 50 | const SkBitmap* bitmap = ownedBitmapResources.itemAt(i); |
| John Reck | a35778c7 | 2014-11-06 09:45:10 -0800 | [diff] [blame] | 51 | resourceCache.decrementRefcountLocked(bitmap); |
| 52 | resourceCache.destructorLocked(bitmap); |
| John Reck | 44fd8d2 | 2014-02-26 11:00:11 -0800 | [diff] [blame] | 53 | } |
| 54 | |
| 55 | for (size_t i = 0; i < patchResources.size(); i++) { |
| John Reck | a35778c7 | 2014-11-06 09:45:10 -0800 | [diff] [blame] | 56 | resourceCache.decrementRefcountLocked(patchResources.itemAt(i)); |
| John Reck | 44fd8d2 | 2014-02-26 11:00:11 -0800 | [diff] [blame] | 57 | } |
| 58 | |
| John Reck | 44fd8d2 | 2014-02-26 11:00:11 -0800 | [diff] [blame] | 59 | for (size_t i = 0; i < sourcePaths.size(); i++) { |
| John Reck | a35778c7 | 2014-11-06 09:45:10 -0800 | [diff] [blame] | 60 | resourceCache.decrementRefcountLocked(sourcePaths.itemAt(i)); |
| John Reck | 44fd8d2 | 2014-02-26 11:00:11 -0800 | [diff] [blame] | 61 | } |
| 62 | |
| John Reck | a35778c7 | 2014-11-06 09:45:10 -0800 | [diff] [blame] | 63 | resourceCache.unlock(); |
| John Reck | 44fd8d2 | 2014-02-26 11:00:11 -0800 | [diff] [blame] | 64 | |
| 65 | for (size_t i = 0; i < paints.size(); i++) { |
| 66 | delete paints.itemAt(i); |
| 67 | } |
| 68 | |
| 69 | for (size_t i = 0; i < regions.size(); i++) { |
| 70 | delete regions.itemAt(i); |
| 71 | } |
| 72 | |
| 73 | for (size_t i = 0; i < paths.size(); i++) { |
| 74 | delete paths.itemAt(i); |
| 75 | } |
| 76 | |
| John Reck | 44fd8d2 | 2014-02-26 11:00:11 -0800 | [diff] [blame] | 77 | bitmapResources.clear(); |
| 78 | ownedBitmapResources.clear(); |
| 79 | patchResources.clear(); |
| John Reck | 44fd8d2 | 2014-02-26 11:00:11 -0800 | [diff] [blame] | 80 | sourcePaths.clear(); |
| 81 | paints.clear(); |
| 82 | regions.clear(); |
| 83 | paths.clear(); |
| John Reck | 44fd8d2 | 2014-02-26 11:00:11 -0800 | [diff] [blame] | 84 | } |
| 85 | |
| Chris Craik | 8afd0f2 | 2014-08-21 17:41:57 -0700 | [diff] [blame] | 86 | size_t DisplayListData::addChild(DrawRenderNodeOp* op) { |
| John Reck | 087bc0c | 2014-04-04 16:20:08 -0700 | [diff] [blame] | 87 | mReferenceHolders.push(op->renderNode()); |
| Chris Craik | 8afd0f2 | 2014-08-21 17:41:57 -0700 | [diff] [blame] | 88 | return mChildren.add(op); |
| John Reck | 087bc0c | 2014-04-04 16:20:08 -0700 | [diff] [blame] | 89 | } |
| 90 | |
| Chris Craik | 0776a60 | 2013-02-14 15:36:01 -0800 | [diff] [blame] | 91 | }; // namespace uirenderer |
| 92 | }; // namespace android |