blob: d6816093f161432900cf04eecdcdc0b0d4c256aa [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
Romain Guy320d46b2012-08-08 16:05:42 -070021#include "Caches.h"
Romain Guyc9855a52011-01-21 21:14:15 -080022#include "Debug.h"
Romain Guyc0ac1932010-07-19 18:43:02 -070023#include "GradientCache.h"
Romain Guyfb8b7632010-08-23 21:05:08 -070024#include "Properties.h"
Romain Guyc0ac1932010-07-19 18:43:02 -070025
26namespace android {
27namespace uirenderer {
28
29///////////////////////////////////////////////////////////////////////////////
Romain Guy42e1e0d2012-07-30 14:47:51 -070030// Defines
31///////////////////////////////////////////////////////////////////////////////
32
33#define GRADIENT_TEXTURE_HEIGHT 2
34#define GRADIENT_BYTES_PER_PIXEL 4
35
36///////////////////////////////////////////////////////////////////////////////
37// Functions
38///////////////////////////////////////////////////////////////////////////////
39
40template<typename T>
41static inline T min(T a, T b) {
42 return a < b ? a : b;
43}
44
45///////////////////////////////////////////////////////////////////////////////
Romain Guy059e12c2012-11-28 17:35:51 -080046// Cache entry
47///////////////////////////////////////////////////////////////////////////////
48
49hash_t GradientCacheEntry::hash() const {
50 uint32_t hash = JenkinsHashMix(0, count);
Romain Guy059e12c2012-11-28 17:35:51 -080051 for (uint32_t i = 0; i < count; i++) {
52 hash = JenkinsHashMix(hash, android::hash_type(colors[i]));
53 hash = JenkinsHashMix(hash, android::hash_type(positions[i]));
54 }
55 return JenkinsHashWhiten(hash);
56}
57
58int GradientCacheEntry::compare(const GradientCacheEntry& lhs, const GradientCacheEntry& rhs) {
59 int deltaInt = int(lhs.count) - int(rhs.count);
60 if (deltaInt != 0) return deltaInt;
61
Romain Guy059e12c2012-11-28 17:35:51 -080062 deltaInt = memcmp(lhs.colors, rhs.colors, lhs.count * sizeof(uint32_t));
63 if (deltaInt != 0) return deltaInt;
64
65 return memcmp(lhs.positions, rhs.positions, lhs.count * sizeof(float));
66}
67
68///////////////////////////////////////////////////////////////////////////////
Romain Guyc0ac1932010-07-19 18:43:02 -070069// Constructors/destructor
70///////////////////////////////////////////////////////////////////////////////
71
Romain Guyfb8b7632010-08-23 21:05:08 -070072GradientCache::GradientCache():
Romain Guy059e12c2012-11-28 17:35:51 -080073 mCache(LruCache<GradientCacheEntry, Texture*>::kUnlimitedCapacity),
Romain Guyfb8b7632010-08-23 21:05:08 -070074 mSize(0), mMaxSize(MB(DEFAULT_GRADIENT_CACHE_SIZE)) {
75 char property[PROPERTY_VALUE_MAX];
76 if (property_get(PROPERTY_GRADIENT_CACHE_SIZE, property, NULL) > 0) {
Romain Guyc9855a52011-01-21 21:14:15 -080077 INIT_LOGD(" Setting gradient cache size to %sMB", property);
Romain Guyfb8b7632010-08-23 21:05:08 -070078 setMaxSize(MB(atof(property)));
79 } else {
Romain Guyc9855a52011-01-21 21:14:15 -080080 INIT_LOGD(" Using default gradient cache size of %.2fMB", DEFAULT_GRADIENT_CACHE_SIZE);
Romain Guyfb8b7632010-08-23 21:05:08 -070081 }
82
Mathias Agopiana8557d22012-08-31 19:52:30 -070083 glGetIntegerv(GL_MAX_TEXTURE_SIZE, &mMaxTextureSize);
Romain Guy8dcfd5e2012-07-20 11:36:03 -070084
Romain Guyfb8b7632010-08-23 21:05:08 -070085 mCache.setOnEntryRemovedListener(this);
86}
87
Romain Guyc0ac1932010-07-19 18:43:02 -070088GradientCache::GradientCache(uint32_t maxByteSize):
Romain Guy059e12c2012-11-28 17:35:51 -080089 mCache(LruCache<GradientCacheEntry, Texture*>::kUnlimitedCapacity),
Romain Guyc0ac1932010-07-19 18:43:02 -070090 mSize(0), mMaxSize(maxByteSize) {
91 mCache.setOnEntryRemovedListener(this);
92}
93
94GradientCache::~GradientCache() {
95 mCache.clear();
96}
97
98///////////////////////////////////////////////////////////////////////////////
99// Size management
100///////////////////////////////////////////////////////////////////////////////
101
102uint32_t GradientCache::getSize() {
103 return mSize;
104}
105
106uint32_t GradientCache::getMaxSize() {
107 return mMaxSize;
108}
109
110void GradientCache::setMaxSize(uint32_t maxSize) {
111 mMaxSize = maxSize;
112 while (mSize > mMaxSize) {
113 mCache.removeOldest();
114 }
115}
116
117///////////////////////////////////////////////////////////////////////////////
118// Callbacks
119///////////////////////////////////////////////////////////////////////////////
120
Romain Guy6203f6c2011-08-01 18:56:21 -0700121void GradientCache::operator()(GradientCacheEntry& shader, Texture*& texture) {
122 if (texture) {
Romain Guy42e1e0d2012-07-30 14:47:51 -0700123 const uint32_t size = texture->width * texture->height * GRADIENT_BYTES_PER_PIXEL;
Romain Guyc0ac1932010-07-19 18:43:02 -0700124 mSize -= size;
Romain Guyc0ac1932010-07-19 18:43:02 -0700125
Romain Guyc0ac1932010-07-19 18:43:02 -0700126 glDeleteTextures(1, &texture->id);
127 delete texture;
128 }
129}
130
131///////////////////////////////////////////////////////////////////////////////
132// Caching
133///////////////////////////////////////////////////////////////////////////////
134
Romain Guy42e1e0d2012-07-30 14:47:51 -0700135Texture* GradientCache::get(uint32_t* colors, float* positions, int count) {
Romain Guy42e1e0d2012-07-30 14:47:51 -0700136 GradientCacheEntry gradient(colors, positions, count);
Romain Guy6203f6c2011-08-01 18:56:21 -0700137 Texture* texture = mCache.get(gradient);
Romain Guyc0ac1932010-07-19 18:43:02 -0700138
Romain Guy6203f6c2011-08-01 18:56:21 -0700139 if (!texture) {
Romain Guy42e1e0d2012-07-30 14:47:51 -0700140 texture = addLinearGradient(gradient, colors, positions, count);
Romain Guyfe48f652010-11-11 15:36:56 -0800141 }
Romain Guy6203f6c2011-08-01 18:56:21 -0700142
143 return texture;
Romain Guyfe48f652010-11-11 15:36:56 -0800144}
145
146void GradientCache::clear() {
Romain Guyc0ac1932010-07-19 18:43:02 -0700147 mCache.clear();
148}
149
Romain Guy42e1e0d2012-07-30 14:47:51 -0700150void GradientCache::getGradientInfo(const uint32_t* colors, const int count,
151 GradientInfo& info) {
Romain Guy320d46b2012-08-08 16:05:42 -0700152 uint32_t width = 256 * (count - 1);
Romain Guy42e1e0d2012-07-30 14:47:51 -0700153
Romain Guy3bbacf22013-02-06 16:51:04 -0800154 if (!Extensions::getInstance().hasNPot()) {
Romain Guy320d46b2012-08-08 16:05:42 -0700155 width = 1 << (31 - __builtin_clz(width));
156 }
157
158 bool hasAlpha = false;
Romain Guy42e1e0d2012-07-30 14:47:51 -0700159 for (int i = 0; i < count; i++) {
160 if (((colors[i] >> 24) & 0xff) < 255) {
161 hasAlpha = true;
162 break;
163 }
164 }
165
166 info.width = min(width, uint32_t(mMaxTextureSize));
167 info.hasAlpha = hasAlpha;
168}
169
Romain Guy6203f6c2011-08-01 18:56:21 -0700170Texture* GradientCache::addLinearGradient(GradientCacheEntry& gradient,
Romain Guy42e1e0d2012-07-30 14:47:51 -0700171 uint32_t* colors, float* positions, int count) {
Romain Guy8dcfd5e2012-07-20 11:36:03 -0700172
Romain Guy42e1e0d2012-07-30 14:47:51 -0700173 GradientInfo info;
174 getGradientInfo(colors, count, info);
Romain Guyc0ac1932010-07-19 18:43:02 -0700175
Romain Guy42e1e0d2012-07-30 14:47:51 -0700176 Texture* texture = new Texture;
177 texture->width = info.width;
178 texture->height = GRADIENT_TEXTURE_HEIGHT;
179 texture->blend = info.hasAlpha;
180 texture->generation = 1;
Romain Guyc0ac1932010-07-19 18:43:02 -0700181
182 // Asume the cache is always big enough
Romain Guy42e1e0d2012-07-30 14:47:51 -0700183 const uint32_t size = texture->width * texture->height * GRADIENT_BYTES_PER_PIXEL;
Romain Guy15a65bf2013-01-03 14:22:40 -0800184 while (getSize() + size > mMaxSize) {
Romain Guyc0ac1932010-07-19 18:43:02 -0700185 mCache.removeOldest();
186 }
187
Romain Guy42e1e0d2012-07-30 14:47:51 -0700188 generateTexture(colors, positions, count, texture);
Romain Guyc0ac1932010-07-19 18:43:02 -0700189
190 mSize += size;
Romain Guy6203f6c2011-08-01 18:56:21 -0700191 mCache.put(gradient, texture);
Romain Guyc0ac1932010-07-19 18:43:02 -0700192
193 return texture;
194}
195
Romain Guy42e1e0d2012-07-30 14:47:51 -0700196void GradientCache::generateTexture(uint32_t* colors, float* positions,
197 int count, Texture* texture) {
198
199 const uint32_t width = texture->width;
200 const GLsizei rowBytes = width * GRADIENT_BYTES_PER_PIXEL;
201 uint32_t pixels[width * texture->height];
202
203 int currentPos = 1;
204
205 float startA = (colors[0] >> 24) & 0xff;
206 float startR = (colors[0] >> 16) & 0xff;
207 float startG = (colors[0] >> 8) & 0xff;
208 float startB = (colors[0] >> 0) & 0xff;
209
210 float endA = (colors[1] >> 24) & 0xff;
211 float endR = (colors[1] >> 16) & 0xff;
212 float endG = (colors[1] >> 8) & 0xff;
213 float endB = (colors[1] >> 0) & 0xff;
214
215 float start = positions[0];
216 float distance = positions[1] - start;
217
218 uint8_t* p = (uint8_t*) pixels;
219 for (uint32_t x = 0; x < width; x++) {
220 float pos = x / float(width - 1);
221 if (pos > positions[currentPos]) {
222 startA = endA;
223 startR = endR;
224 startG = endG;
225 startB = endB;
226 start = positions[currentPos];
227
228 currentPos++;
229
230 endA = (colors[currentPos] >> 24) & 0xff;
231 endR = (colors[currentPos] >> 16) & 0xff;
232 endG = (colors[currentPos] >> 8) & 0xff;
233 endB = (colors[currentPos] >> 0) & 0xff;
234 distance = positions[currentPos] - start;
235 }
236
237 float amount = (pos - start) / distance;
238 float oppAmount = 1.0f - amount;
239
Romain Guyd679b572012-08-29 21:49:00 -0700240 const float alpha = startA * oppAmount + endA * amount;
241 const float a = alpha / 255.0f;
242 *p++ = uint8_t(a * (startR * oppAmount + endR * amount));
243 *p++ = uint8_t(a * (startG * oppAmount + endG * amount));
244 *p++ = uint8_t(a * (startB * oppAmount + endB * amount));
245 *p++ = uint8_t(alpha);
Romain Guyc0ac1932010-07-19 18:43:02 -0700246 }
247
Romain Guy42e1e0d2012-07-30 14:47:51 -0700248 for (int i = 1; i < GRADIENT_TEXTURE_HEIGHT; i++) {
249 memcpy(pixels + width * i, pixels, rowBytes);
250 }
Romain Guyc0ac1932010-07-19 18:43:02 -0700251
252 glGenTextures(1, &texture->id);
253
254 glBindTexture(GL_TEXTURE_2D, texture->id);
Romain Guy42e1e0d2012-07-30 14:47:51 -0700255 glPixelStorei(GL_UNPACK_ALIGNMENT, GRADIENT_BYTES_PER_PIXEL);
Romain Guyc0ac1932010-07-19 18:43:02 -0700256
Romain Guy42e1e0d2012-07-30 14:47:51 -0700257 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, width, texture->height, 0,
258 GL_RGBA, GL_UNSIGNED_BYTE, pixels);
Romain Guyc0ac1932010-07-19 18:43:02 -0700259
Romain Guy39d252a2011-12-12 18:14:06 -0800260 texture->setFilter(GL_LINEAR);
261 texture->setWrap(GL_CLAMP_TO_EDGE);
Romain Guyc0ac1932010-07-19 18:43:02 -0700262}
263
264}; // namespace uirenderer
265}; // namespace android