blob: ea93e7f9716b565a4cce9dc92ea345d0721b5e70 [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// Functions
31///////////////////////////////////////////////////////////////////////////////
32
33template<typename T>
34static inline T min(T a, T b) {
35 return a < b ? a : b;
36}
37
38///////////////////////////////////////////////////////////////////////////////
Romain Guy059e12c2012-11-28 17:35:51 -080039// Cache entry
40///////////////////////////////////////////////////////////////////////////////
41
42hash_t GradientCacheEntry::hash() const {
43 uint32_t hash = JenkinsHashMix(0, count);
Romain Guy059e12c2012-11-28 17:35:51 -080044 for (uint32_t i = 0; i < count; i++) {
45 hash = JenkinsHashMix(hash, android::hash_type(colors[i]));
46 hash = JenkinsHashMix(hash, android::hash_type(positions[i]));
47 }
48 return JenkinsHashWhiten(hash);
49}
50
51int GradientCacheEntry::compare(const GradientCacheEntry& lhs, const GradientCacheEntry& rhs) {
52 int deltaInt = int(lhs.count) - int(rhs.count);
53 if (deltaInt != 0) return deltaInt;
54
Chris Craik51d6a3d2014-12-22 17:16:56 -080055 deltaInt = memcmp(lhs.colors.get(), rhs.colors.get(), lhs.count * sizeof(uint32_t));
Romain Guy059e12c2012-11-28 17:35:51 -080056 if (deltaInt != 0) return deltaInt;
57
Chris Craik51d6a3d2014-12-22 17:16:56 -080058 return memcmp(lhs.positions.get(), rhs.positions.get(), lhs.count * sizeof(float));
Romain Guy059e12c2012-11-28 17:35:51 -080059}
60
61///////////////////////////////////////////////////////////////////////////////
Romain Guyc0ac1932010-07-19 18:43:02 -070062// Constructors/destructor
63///////////////////////////////////////////////////////////////////////////////
64
Chris Craik117bdbc2015-02-05 10:12:38 -080065GradientCache::GradientCache(Extensions& extensions)
66 : mCache(LruCache<GradientCacheEntry, Texture*>::kUnlimitedCapacity)
67 , mSize(0)
68 , mMaxSize(MB(DEFAULT_GRADIENT_CACHE_SIZE))
69 , mUseFloatTexture(extensions.hasFloatTextures())
70 , mHasNpot(extensions.hasNPot()){
Romain Guyfb8b7632010-08-23 21:05:08 -070071 char property[PROPERTY_VALUE_MAX];
Chris Craikd41c4d82015-01-05 15:51:13 -080072 if (property_get(PROPERTY_GRADIENT_CACHE_SIZE, property, nullptr) > 0) {
Romain Guyc9855a52011-01-21 21:14:15 -080073 INIT_LOGD(" Setting gradient cache size to %sMB", property);
Romain Guyfb8b7632010-08-23 21:05:08 -070074 setMaxSize(MB(atof(property)));
75 } else {
Romain Guyc9855a52011-01-21 21:14:15 -080076 INIT_LOGD(" Using default gradient cache size of %.2fMB", DEFAULT_GRADIENT_CACHE_SIZE);
Romain Guyfb8b7632010-08-23 21:05:08 -070077 }
78
Mathias Agopiana8557d22012-08-31 19:52:30 -070079 glGetIntegerv(GL_MAX_TEXTURE_SIZE, &mMaxTextureSize);
Romain Guy8dcfd5e2012-07-20 11:36:03 -070080
Romain Guyfb8b7632010-08-23 21:05:08 -070081 mCache.setOnEntryRemovedListener(this);
Romain Guyc0ac1932010-07-19 18:43:02 -070082}
83
84GradientCache::~GradientCache() {
85 mCache.clear();
86}
87
88///////////////////////////////////////////////////////////////////////////////
89// Size management
90///////////////////////////////////////////////////////////////////////////////
91
92uint32_t GradientCache::getSize() {
93 return mSize;
94}
95
96uint32_t GradientCache::getMaxSize() {
97 return mMaxSize;
98}
99
100void GradientCache::setMaxSize(uint32_t maxSize) {
101 mMaxSize = maxSize;
102 while (mSize > mMaxSize) {
103 mCache.removeOldest();
104 }
105}
106
107///////////////////////////////////////////////////////////////////////////////
108// Callbacks
109///////////////////////////////////////////////////////////////////////////////
110
Chris Craike63f7c622013-10-17 10:30:55 -0700111void GradientCache::operator()(GradientCacheEntry&, Texture*& texture) {
Romain Guy6203f6c2011-08-01 18:56:21 -0700112 if (texture) {
Romain Guyb4880042013-04-05 11:17:55 -0700113 const uint32_t size = texture->width * texture->height * bytesPerPixel();
Romain Guyc0ac1932010-07-19 18:43:02 -0700114 mSize -= size;
Romain Guyc0ac1932010-07-19 18:43:02 -0700115
Romain Guybe1b1272013-06-06 14:02:54 -0700116 texture->deleteTexture();
Romain Guyc0ac1932010-07-19 18:43:02 -0700117 delete texture;
118 }
119}
120
121///////////////////////////////////////////////////////////////////////////////
122// Caching
123///////////////////////////////////////////////////////////////////////////////
124
Romain Guy42e1e0d2012-07-30 14:47:51 -0700125Texture* GradientCache::get(uint32_t* colors, float* positions, int count) {
Romain Guy42e1e0d2012-07-30 14:47:51 -0700126 GradientCacheEntry gradient(colors, positions, count);
Romain Guy6203f6c2011-08-01 18:56:21 -0700127 Texture* texture = mCache.get(gradient);
Romain Guyc0ac1932010-07-19 18:43:02 -0700128
Romain Guy6203f6c2011-08-01 18:56:21 -0700129 if (!texture) {
Romain Guy42e1e0d2012-07-30 14:47:51 -0700130 texture = addLinearGradient(gradient, colors, positions, count);
Romain Guyfe48f652010-11-11 15:36:56 -0800131 }
Romain Guy6203f6c2011-08-01 18:56:21 -0700132
133 return texture;
Romain Guyfe48f652010-11-11 15:36:56 -0800134}
135
136void GradientCache::clear() {
Romain Guyc0ac1932010-07-19 18:43:02 -0700137 mCache.clear();
138}
139
Romain Guy42e1e0d2012-07-30 14:47:51 -0700140void GradientCache::getGradientInfo(const uint32_t* colors, const int count,
141 GradientInfo& info) {
Romain Guy320d46b2012-08-08 16:05:42 -0700142 uint32_t width = 256 * (count - 1);
Romain Guy42e1e0d2012-07-30 14:47:51 -0700143
Romain Guy95aeff82013-04-12 16:32:05 -0700144 // If the npot extension is not supported we cannot use non-clamp
145 // wrap modes. We therefore find the nearest largest power of 2
146 // unless width is already a power of 2
147 if (!mHasNpot && (width & (width - 1)) != 0) {
148 width = 1 << (32 - __builtin_clz(width));
Romain Guy320d46b2012-08-08 16:05:42 -0700149 }
150
151 bool hasAlpha = false;
Romain Guy42e1e0d2012-07-30 14:47:51 -0700152 for (int i = 0; i < count; i++) {
153 if (((colors[i] >> 24) & 0xff) < 255) {
154 hasAlpha = true;
155 break;
156 }
157 }
158
159 info.width = min(width, uint32_t(mMaxTextureSize));
160 info.hasAlpha = hasAlpha;
161}
162
Romain Guy6203f6c2011-08-01 18:56:21 -0700163Texture* GradientCache::addLinearGradient(GradientCacheEntry& gradient,
Romain Guy42e1e0d2012-07-30 14:47:51 -0700164 uint32_t* colors, float* positions, int count) {
Romain Guy8dcfd5e2012-07-20 11:36:03 -0700165
Romain Guy42e1e0d2012-07-30 14:47:51 -0700166 GradientInfo info;
167 getGradientInfo(colors, count, info);
Romain Guyc0ac1932010-07-19 18:43:02 -0700168
Chris Craik8e93a7c2015-02-23 13:07:57 -0800169 Texture* texture = new Texture(Caches::getInstance());
Romain Guy42e1e0d2012-07-30 14:47:51 -0700170 texture->width = info.width;
Romain Guyb4880042013-04-05 11:17:55 -0700171 texture->height = 2;
Romain Guy42e1e0d2012-07-30 14:47:51 -0700172 texture->blend = info.hasAlpha;
173 texture->generation = 1;
Romain Guyc0ac1932010-07-19 18:43:02 -0700174
175 // Asume the cache is always big enough
Romain Guyb4880042013-04-05 11:17:55 -0700176 const uint32_t size = texture->width * texture->height * bytesPerPixel();
Romain Guy15a65bf2013-01-03 14:22:40 -0800177 while (getSize() + size > mMaxSize) {
Romain Guyc0ac1932010-07-19 18:43:02 -0700178 mCache.removeOldest();
179 }
180
Chris Craike63f7c622013-10-17 10:30:55 -0700181 generateTexture(colors, positions, texture);
Romain Guyc0ac1932010-07-19 18:43:02 -0700182
183 mSize += size;
Romain Guy6203f6c2011-08-01 18:56:21 -0700184 mCache.put(gradient, texture);
Romain Guyc0ac1932010-07-19 18:43:02 -0700185
186 return texture;
187}
188
Romain Guyb4880042013-04-05 11:17:55 -0700189size_t GradientCache::bytesPerPixel() const {
190 // We use 4 channels (RGBA)
191 return 4 * (mUseFloatTexture ? sizeof(float) : sizeof(uint8_t));
192}
193
194void GradientCache::splitToBytes(uint32_t inColor, GradientColor& outColor) const {
195 outColor.r = (inColor >> 16) & 0xff;
196 outColor.g = (inColor >> 8) & 0xff;
197 outColor.b = (inColor >> 0) & 0xff;
198 outColor.a = (inColor >> 24) & 0xff;
199}
200
201void GradientCache::splitToFloats(uint32_t inColor, GradientColor& outColor) const {
202 outColor.r = ((inColor >> 16) & 0xff) / 255.0f;
203 outColor.g = ((inColor >> 8) & 0xff) / 255.0f;
204 outColor.b = ((inColor >> 0) & 0xff) / 255.0f;
205 outColor.a = ((inColor >> 24) & 0xff) / 255.0f;
206}
207
208void GradientCache::mixBytes(GradientColor& start, GradientColor& end, float amount,
209 uint8_t*& dst) const {
210 float oppAmount = 1.0f - amount;
211 const float alpha = start.a * oppAmount + end.a * amount;
212 const float a = alpha / 255.0f;
213
214 *dst++ = uint8_t(a * (start.r * oppAmount + end.r * amount));
215 *dst++ = uint8_t(a * (start.g * oppAmount + end.g * amount));
216 *dst++ = uint8_t(a * (start.b * oppAmount + end.b * amount));
217 *dst++ = uint8_t(alpha);
218}
219
220void GradientCache::mixFloats(GradientColor& start, GradientColor& end, float amount,
221 uint8_t*& dst) const {
222 float oppAmount = 1.0f - amount;
223 const float a = start.a * oppAmount + end.a * amount;
224
225 float* d = (float*) dst;
226 *d++ = a * (start.r * oppAmount + end.r * amount);
227 *d++ = a * (start.g * oppAmount + end.g * amount);
228 *d++ = a * (start.b * oppAmount + end.b * amount);
229 *d++ = a;
230
231 dst += 4 * sizeof(float);
232}
233
Chris Craike63f7c622013-10-17 10:30:55 -0700234void GradientCache::generateTexture(uint32_t* colors, float* positions, Texture* texture) {
Romain Guy42e1e0d2012-07-30 14:47:51 -0700235 const uint32_t width = texture->width;
Romain Guyb4880042013-04-05 11:17:55 -0700236 const GLsizei rowBytes = width * bytesPerPixel();
237 uint8_t pixels[rowBytes * texture->height];
238
239 static ChannelSplitter gSplitters[] = {
240 &android::uirenderer::GradientCache::splitToBytes,
241 &android::uirenderer::GradientCache::splitToFloats,
242 };
243 ChannelSplitter split = gSplitters[mUseFloatTexture];
244
245 static ChannelMixer gMixers[] = {
246 &android::uirenderer::GradientCache::mixBytes,
247 &android::uirenderer::GradientCache::mixFloats,
248 };
249 ChannelMixer mix = gMixers[mUseFloatTexture];
250
251 GradientColor start;
252 (this->*split)(colors[0], start);
253
254 GradientColor end;
255 (this->*split)(colors[1], end);
Romain Guy42e1e0d2012-07-30 14:47:51 -0700256
257 int currentPos = 1;
Romain Guyb4880042013-04-05 11:17:55 -0700258 float startPos = positions[0];
259 float distance = positions[1] - startPos;
Romain Guy42e1e0d2012-07-30 14:47:51 -0700260
Romain Guyb4880042013-04-05 11:17:55 -0700261 uint8_t* dst = pixels;
Romain Guy42e1e0d2012-07-30 14:47:51 -0700262 for (uint32_t x = 0; x < width; x++) {
263 float pos = x / float(width - 1);
264 if (pos > positions[currentPos]) {
Romain Guyb4880042013-04-05 11:17:55 -0700265 start = end;
266 startPos = positions[currentPos];
Romain Guy42e1e0d2012-07-30 14:47:51 -0700267
268 currentPos++;
269
Romain Guyb4880042013-04-05 11:17:55 -0700270 (this->*split)(colors[currentPos], end);
271 distance = positions[currentPos] - startPos;
Romain Guy42e1e0d2012-07-30 14:47:51 -0700272 }
273
Romain Guyb4880042013-04-05 11:17:55 -0700274 float amount = (pos - startPos) / distance;
275 (this->*mix)(start, end, amount, dst);
Romain Guyc0ac1932010-07-19 18:43:02 -0700276 }
277
Romain Guyb4880042013-04-05 11:17:55 -0700278 memcpy(pixels + rowBytes, pixels, rowBytes);
Romain Guyc0ac1932010-07-19 18:43:02 -0700279
280 glGenTextures(1, &texture->id);
Chris Craik44eb2c02015-01-29 09:45:09 -0800281 Caches::getInstance().textureState().bindTexture(texture->id);
Romain Guyb4880042013-04-05 11:17:55 -0700282 glPixelStorei(GL_UNPACK_ALIGNMENT, 4);
Romain Guyc0ac1932010-07-19 18:43:02 -0700283
Romain Guyb4880042013-04-05 11:17:55 -0700284 if (mUseFloatTexture) {
285 // We have to use GL_RGBA16F because GL_RGBA32F does not support filtering
286 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA16F, width, texture->height, 0,
287 GL_RGBA, GL_FLOAT, pixels);
288 } else {
289 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, width, texture->height, 0,
290 GL_RGBA, GL_UNSIGNED_BYTE, pixels);
291 }
Romain Guyc0ac1932010-07-19 18:43:02 -0700292
Romain Guy39d252a2011-12-12 18:14:06 -0800293 texture->setFilter(GL_LINEAR);
294 texture->setWrap(GL_CLAMP_TO_EDGE);
Romain Guyc0ac1932010-07-19 18:43:02 -0700295}
296
297}; // namespace uirenderer
298}; // namespace android