blob: 154c0ecce5edf5202a2b4f175b00b8acc6b3a679 [file] [log] [blame]
Romain Guyc0ac1932010-07-19 18:43:02 -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
Romain Guy059e12c2012-11-28 17:35:51 -080019#include <utils/JenkinsHash.h>
Romain Guya2341a92010-09-08 18:04:33 -070020#include <utils/threads.h>
21
Romain Guy320d46b2012-08-08 16:05:42 -070022#include "Caches.h"
Romain Guyc9855a52011-01-21 21:14:15 -080023#include "Debug.h"
Romain Guyc0ac1932010-07-19 18:43:02 -070024#include "GradientCache.h"
Romain Guyfb8b7632010-08-23 21:05:08 -070025#include "Properties.h"
Romain Guyc0ac1932010-07-19 18:43:02 -070026
27namespace android {
28namespace uirenderer {
29
30///////////////////////////////////////////////////////////////////////////////
Romain Guy42e1e0d2012-07-30 14:47:51 -070031// Defines
32///////////////////////////////////////////////////////////////////////////////
33
34#define GRADIENT_TEXTURE_HEIGHT 2
35#define GRADIENT_BYTES_PER_PIXEL 4
36
37///////////////////////////////////////////////////////////////////////////////
38// Functions
39///////////////////////////////////////////////////////////////////////////////
40
41template<typename T>
42static inline T min(T a, T b) {
43 return a < b ? a : b;
44}
45
46///////////////////////////////////////////////////////////////////////////////
Romain Guy059e12c2012-11-28 17:35:51 -080047// Cache entry
48///////////////////////////////////////////////////////////////////////////////
49
50hash_t GradientCacheEntry::hash() const {
51 uint32_t hash = JenkinsHashMix(0, count);
Romain Guy059e12c2012-11-28 17:35:51 -080052 for (uint32_t i = 0; i < count; i++) {
53 hash = JenkinsHashMix(hash, android::hash_type(colors[i]));
54 hash = JenkinsHashMix(hash, android::hash_type(positions[i]));
55 }
56 return JenkinsHashWhiten(hash);
57}
58
59int GradientCacheEntry::compare(const GradientCacheEntry& lhs, const GradientCacheEntry& rhs) {
60 int deltaInt = int(lhs.count) - int(rhs.count);
61 if (deltaInt != 0) return deltaInt;
62
Romain Guy059e12c2012-11-28 17:35:51 -080063 deltaInt = memcmp(lhs.colors, rhs.colors, lhs.count * sizeof(uint32_t));
64 if (deltaInt != 0) return deltaInt;
65
66 return memcmp(lhs.positions, rhs.positions, lhs.count * sizeof(float));
67}
68
69///////////////////////////////////////////////////////////////////////////////
Romain Guyc0ac1932010-07-19 18:43:02 -070070// Constructors/destructor
71///////////////////////////////////////////////////////////////////////////////
72
Romain Guyfb8b7632010-08-23 21:05:08 -070073GradientCache::GradientCache():
Romain Guy059e12c2012-11-28 17:35:51 -080074 mCache(LruCache<GradientCacheEntry, Texture*>::kUnlimitedCapacity),
Romain Guyfb8b7632010-08-23 21:05:08 -070075 mSize(0), mMaxSize(MB(DEFAULT_GRADIENT_CACHE_SIZE)) {
76 char property[PROPERTY_VALUE_MAX];
77 if (property_get(PROPERTY_GRADIENT_CACHE_SIZE, property, NULL) > 0) {
Romain Guyc9855a52011-01-21 21:14:15 -080078 INIT_LOGD(" Setting gradient cache size to %sMB", property);
Romain Guyfb8b7632010-08-23 21:05:08 -070079 setMaxSize(MB(atof(property)));
80 } else {
Romain Guyc9855a52011-01-21 21:14:15 -080081 INIT_LOGD(" Using default gradient cache size of %.2fMB", DEFAULT_GRADIENT_CACHE_SIZE);
Romain Guyfb8b7632010-08-23 21:05:08 -070082 }
83
Mathias Agopiana8557d22012-08-31 19:52:30 -070084 glGetIntegerv(GL_MAX_TEXTURE_SIZE, &mMaxTextureSize);
Romain Guy8dcfd5e2012-07-20 11:36:03 -070085
Romain Guyfb8b7632010-08-23 21:05:08 -070086 mCache.setOnEntryRemovedListener(this);
87}
88
Romain Guyc0ac1932010-07-19 18:43:02 -070089GradientCache::GradientCache(uint32_t maxByteSize):
Romain Guy059e12c2012-11-28 17:35:51 -080090 mCache(LruCache<GradientCacheEntry, Texture*>::kUnlimitedCapacity),
Romain Guyc0ac1932010-07-19 18:43:02 -070091 mSize(0), mMaxSize(maxByteSize) {
92 mCache.setOnEntryRemovedListener(this);
93}
94
95GradientCache::~GradientCache() {
96 mCache.clear();
97}
98
99///////////////////////////////////////////////////////////////////////////////
100// Size management
101///////////////////////////////////////////////////////////////////////////////
102
103uint32_t GradientCache::getSize() {
104 return mSize;
105}
106
107uint32_t GradientCache::getMaxSize() {
108 return mMaxSize;
109}
110
111void GradientCache::setMaxSize(uint32_t maxSize) {
112 mMaxSize = maxSize;
113 while (mSize > mMaxSize) {
114 mCache.removeOldest();
115 }
116}
117
118///////////////////////////////////////////////////////////////////////////////
119// Callbacks
120///////////////////////////////////////////////////////////////////////////////
121
Romain Guy6203f6c2011-08-01 18:56:21 -0700122void GradientCache::operator()(GradientCacheEntry& shader, Texture*& texture) {
123 if (texture) {
Romain Guy42e1e0d2012-07-30 14:47:51 -0700124 const uint32_t size = texture->width * texture->height * GRADIENT_BYTES_PER_PIXEL;
Romain Guyc0ac1932010-07-19 18:43:02 -0700125 mSize -= size;
Romain Guyc0ac1932010-07-19 18:43:02 -0700126
Romain Guyc0ac1932010-07-19 18:43:02 -0700127 glDeleteTextures(1, &texture->id);
128 delete texture;
129 }
130}
131
132///////////////////////////////////////////////////////////////////////////////
133// Caching
134///////////////////////////////////////////////////////////////////////////////
135
Romain Guy42e1e0d2012-07-30 14:47:51 -0700136Texture* GradientCache::get(uint32_t* colors, float* positions, int count) {
Romain Guy42e1e0d2012-07-30 14:47:51 -0700137 GradientCacheEntry gradient(colors, positions, count);
Romain Guy6203f6c2011-08-01 18:56:21 -0700138 Texture* texture = mCache.get(gradient);
Romain Guyc0ac1932010-07-19 18:43:02 -0700139
Romain Guy6203f6c2011-08-01 18:56:21 -0700140 if (!texture) {
Romain Guy42e1e0d2012-07-30 14:47:51 -0700141 texture = addLinearGradient(gradient, colors, positions, count);
Romain Guyfe48f652010-11-11 15:36:56 -0800142 }
Romain Guy6203f6c2011-08-01 18:56:21 -0700143
144 return texture;
Romain Guyfe48f652010-11-11 15:36:56 -0800145}
146
147void GradientCache::clear() {
Romain Guyc0ac1932010-07-19 18:43:02 -0700148 mCache.clear();
149}
150
Romain Guy42e1e0d2012-07-30 14:47:51 -0700151void GradientCache::getGradientInfo(const uint32_t* colors, const int count,
152 GradientInfo& info) {
Romain Guy320d46b2012-08-08 16:05:42 -0700153 uint32_t width = 256 * (count - 1);
Romain Guy42e1e0d2012-07-30 14:47:51 -0700154
Romain Guy320d46b2012-08-08 16:05:42 -0700155 if (!Caches::getInstance().extensions.hasNPot()) {
156 width = 1 << (31 - __builtin_clz(width));
157 }
158
159 bool hasAlpha = false;
Romain Guy42e1e0d2012-07-30 14:47:51 -0700160 for (int i = 0; i < count; i++) {
161 if (((colors[i] >> 24) & 0xff) < 255) {
162 hasAlpha = true;
163 break;
164 }
165 }
166
167 info.width = min(width, uint32_t(mMaxTextureSize));
168 info.hasAlpha = hasAlpha;
169}
170
Romain Guy6203f6c2011-08-01 18:56:21 -0700171Texture* GradientCache::addLinearGradient(GradientCacheEntry& gradient,
Romain Guy42e1e0d2012-07-30 14:47:51 -0700172 uint32_t* colors, float* positions, int count) {
Romain Guy8dcfd5e2012-07-20 11:36:03 -0700173
Romain Guy42e1e0d2012-07-30 14:47:51 -0700174 GradientInfo info;
175 getGradientInfo(colors, count, info);
Romain Guyc0ac1932010-07-19 18:43:02 -0700176
Romain Guy42e1e0d2012-07-30 14:47:51 -0700177 Texture* texture = new Texture;
178 texture->width = info.width;
179 texture->height = GRADIENT_TEXTURE_HEIGHT;
180 texture->blend = info.hasAlpha;
181 texture->generation = 1;
Romain Guyc0ac1932010-07-19 18:43:02 -0700182
183 // Asume the cache is always big enough
Romain Guy42e1e0d2012-07-30 14:47:51 -0700184 const uint32_t size = texture->width * texture->height * GRADIENT_BYTES_PER_PIXEL;
Romain Guy15a65bf2013-01-03 14:22:40 -0800185 while (getSize() + size > mMaxSize) {
Romain Guyc0ac1932010-07-19 18:43:02 -0700186 mCache.removeOldest();
187 }
188
Romain Guy42e1e0d2012-07-30 14:47:51 -0700189 generateTexture(colors, positions, count, texture);
Romain Guyc0ac1932010-07-19 18:43:02 -0700190
191 mSize += size;
Romain Guy6203f6c2011-08-01 18:56:21 -0700192 mCache.put(gradient, texture);
Romain Guyc0ac1932010-07-19 18:43:02 -0700193
194 return texture;
195}
196
Romain Guy42e1e0d2012-07-30 14:47:51 -0700197void GradientCache::generateTexture(uint32_t* colors, float* positions,
198 int count, Texture* texture) {
199
200 const uint32_t width = texture->width;
201 const GLsizei rowBytes = width * GRADIENT_BYTES_PER_PIXEL;
202 uint32_t pixels[width * texture->height];
203
204 int currentPos = 1;
205
206 float startA = (colors[0] >> 24) & 0xff;
207 float startR = (colors[0] >> 16) & 0xff;
208 float startG = (colors[0] >> 8) & 0xff;
209 float startB = (colors[0] >> 0) & 0xff;
210
211 float endA = (colors[1] >> 24) & 0xff;
212 float endR = (colors[1] >> 16) & 0xff;
213 float endG = (colors[1] >> 8) & 0xff;
214 float endB = (colors[1] >> 0) & 0xff;
215
216 float start = positions[0];
217 float distance = positions[1] - start;
218
219 uint8_t* p = (uint8_t*) pixels;
220 for (uint32_t x = 0; x < width; x++) {
221 float pos = x / float(width - 1);
222 if (pos > positions[currentPos]) {
223 startA = endA;
224 startR = endR;
225 startG = endG;
226 startB = endB;
227 start = positions[currentPos];
228
229 currentPos++;
230
231 endA = (colors[currentPos] >> 24) & 0xff;
232 endR = (colors[currentPos] >> 16) & 0xff;
233 endG = (colors[currentPos] >> 8) & 0xff;
234 endB = (colors[currentPos] >> 0) & 0xff;
235 distance = positions[currentPos] - start;
236 }
237
238 float amount = (pos - start) / distance;
239 float oppAmount = 1.0f - amount;
240
Romain Guyd679b572012-08-29 21:49:00 -0700241 const float alpha = startA * oppAmount + endA * amount;
242 const float a = alpha / 255.0f;
243 *p++ = uint8_t(a * (startR * oppAmount + endR * amount));
244 *p++ = uint8_t(a * (startG * oppAmount + endG * amount));
245 *p++ = uint8_t(a * (startB * oppAmount + endB * amount));
246 *p++ = uint8_t(alpha);
Romain Guyc0ac1932010-07-19 18:43:02 -0700247 }
248
Romain Guy42e1e0d2012-07-30 14:47:51 -0700249 for (int i = 1; i < GRADIENT_TEXTURE_HEIGHT; i++) {
250 memcpy(pixels + width * i, pixels, rowBytes);
251 }
Romain Guyc0ac1932010-07-19 18:43:02 -0700252
253 glGenTextures(1, &texture->id);
254
255 glBindTexture(GL_TEXTURE_2D, texture->id);
Romain Guy42e1e0d2012-07-30 14:47:51 -0700256 glPixelStorei(GL_UNPACK_ALIGNMENT, GRADIENT_BYTES_PER_PIXEL);
Romain Guyc0ac1932010-07-19 18:43:02 -0700257
Romain Guy42e1e0d2012-07-30 14:47:51 -0700258 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, width, texture->height, 0,
259 GL_RGBA, GL_UNSIGNED_BYTE, pixels);
Romain Guyc0ac1932010-07-19 18:43:02 -0700260
Romain Guy39d252a2011-12-12 18:14:06 -0800261 texture->setFilter(GL_LINEAR);
262 texture->setWrap(GL_CLAMP_TO_EDGE);
Romain Guyc0ac1932010-07-19 18:43:02 -0700263}
264
265}; // namespace uirenderer
266}; // namespace android