blob: 9702c3d50c1fb0db5077d29c2616f64b95db6af7 [file] [log] [blame]
Romain Guyf7f93552010-07-08 19:17:03 -07001/*
2 * Copyright (C) 2010 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#define LOG_TAG "OpenGLRenderer"
18
19#include <utils/Log.h>
Romain Guyf7f93552010-07-08 19:17:03 -070020
21#include "PatchCache.h"
Romain Guyfb8b7632010-08-23 21:05:08 -070022#include "Properties.h"
Romain Guyf7f93552010-07-08 19:17:03 -070023
24namespace android {
25namespace uirenderer {
26
27///////////////////////////////////////////////////////////////////////////////
28// Constructors/destructor
29///////////////////////////////////////////////////////////////////////////////
30
Romain Guy2728f962010-10-08 18:36:15 -070031PatchCache::PatchCache(): mMaxEntries(DEFAULT_PATCH_CACHE_SIZE) {
Romain Guyfb8b7632010-08-23 21:05:08 -070032}
33
Romain Guy2728f962010-10-08 18:36:15 -070034PatchCache::PatchCache(uint32_t maxEntries): mMaxEntries(maxEntries) {
Romain Guyf7f93552010-07-08 19:17:03 -070035}
36
37PatchCache::~PatchCache() {
38 clear();
39}
40
41///////////////////////////////////////////////////////////////////////////////
Romain Guyf7f93552010-07-08 19:17:03 -070042// Caching
43///////////////////////////////////////////////////////////////////////////////
44
45void PatchCache::clear() {
Romain Guy2728f962010-10-08 18:36:15 -070046 size_t count = mCache.size();
Romain Guy4bb94202010-10-12 15:59:26 -070047 for (size_t i = 0; i < count; i++) {
Romain Guy2728f962010-10-08 18:36:15 -070048 delete mCache.valueAt(i);
49 }
Romain Guyf7f93552010-07-08 19:17:03 -070050 mCache.clear();
Romain Guyf7f93552010-07-08 19:17:03 -070051}
52
Romain Guy2728f962010-10-08 18:36:15 -070053Patch* PatchCache::get(const float bitmapWidth, const float bitmapHeight,
54 const float pixelWidth, const float pixelHeight,
Romain Guy4bb94202010-10-12 15:59:26 -070055 const int32_t* xDivs, const int32_t* yDivs, const uint32_t* colors,
56 const uint32_t width, const uint32_t height, const int8_t numColors) {
57
58 int8_t transparentQuads = 0;
59 uint32_t colorKey = 0;
60
61 if (uint8_t(numColors) < sizeof(uint32_t) * 4) {
62 for (int8_t i = 0; i < numColors; i++) {
63 if (colors[i] == 0x0) {
64 transparentQuads++;
65 colorKey |= 0x1 << i;
66 }
67 }
68 }
Romain Guyf7f93552010-07-08 19:17:03 -070069
Romain Guy054dc182010-10-15 17:55:25 -070070 // If the 9patch is made of only transparent quads
Romain Guy03750a02010-10-18 14:06:08 -070071 if (transparentQuads == int8_t((width + 1) * (height + 1))) {
Romain Guy054dc182010-10-15 17:55:25 -070072 return NULL;
73 }
74
Romain Guy2728f962010-10-08 18:36:15 -070075 const PatchDescription description(bitmapWidth, bitmapHeight,
Romain Guy4bb94202010-10-12 15:59:26 -070076 pixelWidth, pixelHeight, width, height, transparentQuads, colorKey);
Romain Guy2728f962010-10-08 18:36:15 -070077
78 ssize_t index = mCache.indexOfKey(description);
79 Patch* mesh = NULL;
80 if (index >= 0) {
81 mesh = mCache.valueAt(index);
82 }
83
Romain Guyf7f93552010-07-08 19:17:03 -070084 if (!mesh) {
Romain Guy4bb94202010-10-12 15:59:26 -070085 PATCH_LOGD("New patch mesh "
86 "xCount=%d yCount=%d, w=%.2f h=%.2f, bw=%.2f bh=%.2f",
87 width, height, pixelWidth, pixelHeight, bitmapWidth, bitmapHeight);
Romain Guy2728f962010-10-08 18:36:15 -070088
Romain Guy4bb94202010-10-12 15:59:26 -070089 mesh = new Patch(width, height, transparentQuads);
Romain Guy6f72beb2010-11-30 12:04:14 -080090 mesh->updateColorKey(colorKey);
91 mesh->copy(xDivs, yDivs);
92 mesh->updateVertices(bitmapWidth, bitmapHeight, 0.0f, 0.0f, pixelWidth, pixelHeight);
Romain Guy2728f962010-10-08 18:36:15 -070093
94 if (mCache.size() >= mMaxEntries) {
Romain Guy21b028a2010-10-08 18:43:58 -070095 delete mCache.valueAt(mCache.size() - 1);
96 mCache.removeItemsAt(mCache.size() - 1, 1);
Romain Guy2728f962010-10-08 18:36:15 -070097 }
98
99 mCache.add(description, mesh);
Romain Guy6f72beb2010-11-30 12:04:14 -0800100 } else if (!mesh->matches(xDivs, yDivs, colorKey)) {
101 PATCH_LOGD("Patch mesh does not match, refreshing vertices");
102 mesh->updateVertices(bitmapWidth, bitmapHeight, 0.0f, 0.0f, pixelWidth, pixelHeight);
Romain Guyf7f93552010-07-08 19:17:03 -0700103 }
104
105 return mesh;
106}
107
108}; // namespace uirenderer
109}; // namespace android