Romain Guy | ce0537b | 2010-06-29 21:05:21 -0700 | [diff] [blame] | 1 | /* |
| 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 | |
Romain Guy | 121e224 | 2010-07-01 18:26:52 -0700 | [diff] [blame] | 17 | #define LOG_TAG "OpenGLRenderer" |
John Reck | ec4cefc | 2014-07-29 09:49:13 -0700 | [diff] [blame] | 18 | #define ATRACE_TAG ATRACE_TAG_VIEW |
Romain Guy | 121e224 | 2010-07-01 18:26:52 -0700 | [diff] [blame] | 19 | |
Romain Guy | ce0537b | 2010-06-29 21:05:21 -0700 | [diff] [blame] | 20 | #include <GLES2/gl2.h> |
| 21 | |
Romain Guy | 7adaf3d | 2010-10-05 14:58:09 -0700 | [diff] [blame] | 22 | #include <SkCanvas.h> |
| 23 | |
Romain Guy | ca89e2a | 2013-03-08 17:44:20 -0800 | [diff] [blame] | 24 | #include <utils/Mutex.h> |
Romain Guy | 9aaa826 | 2010-09-08 15:15:43 -0700 | [diff] [blame] | 25 | |
Romain Guy | 713e1bb | 2012-10-16 18:44:09 -0700 | [diff] [blame] | 26 | #include "Caches.h" |
Romain Guy | ce0537b | 2010-06-29 21:05:21 -0700 | [diff] [blame] | 27 | #include "TextureCache.h" |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 28 | #include "Properties.h" |
Romain Guy | ce0537b | 2010-06-29 21:05:21 -0700 | [diff] [blame] | 29 | |
| 30 | namespace android { |
| 31 | namespace uirenderer { |
| 32 | |
Romain Guy | 121e224 | 2010-07-01 18:26:52 -0700 | [diff] [blame] | 33 | /////////////////////////////////////////////////////////////////////////////// |
| 34 | // Constructors/destructor |
| 35 | /////////////////////////////////////////////////////////////////////////////// |
| 36 | |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 37 | TextureCache::TextureCache(): |
Leon Scroggins III | d1ad5e6 | 2014-05-05 12:50:38 -0400 | [diff] [blame] | 38 | mCache(LruCache<const SkPixelRef*, Texture*>::kUnlimitedCapacity), |
Romain Guy | eca0ca2 | 2011-11-04 15:12:29 -0700 | [diff] [blame] | 39 | mSize(0), mMaxSize(MB(DEFAULT_TEXTURE_CACHE_SIZE)), |
| 40 | mFlushRate(DEFAULT_TEXTURE_CACHE_FLUSH_RATE) { |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 41 | char property[PROPERTY_VALUE_MAX]; |
| 42 | if (property_get(PROPERTY_TEXTURE_CACHE_SIZE, property, NULL) > 0) { |
Romain Guy | c9855a5 | 2011-01-21 21:14:15 -0800 | [diff] [blame] | 43 | INIT_LOGD(" Setting texture cache size to %sMB", property); |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 44 | setMaxSize(MB(atof(property))); |
| 45 | } else { |
Romain Guy | c9855a5 | 2011-01-21 21:14:15 -0800 | [diff] [blame] | 46 | INIT_LOGD(" Using default texture cache size of %.2fMB", DEFAULT_TEXTURE_CACHE_SIZE); |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 47 | } |
| 48 | |
Romain Guy | eca0ca2 | 2011-11-04 15:12:29 -0700 | [diff] [blame] | 49 | if (property_get(PROPERTY_TEXTURE_CACHE_FLUSH_RATE, property, NULL) > 0) { |
| 50 | float flushRate = atof(property); |
| 51 | INIT_LOGD(" Setting texture cache flush rate to %.2f%%", flushRate * 100.0f); |
| 52 | setFlushRate(flushRate); |
| 53 | } else { |
| 54 | INIT_LOGD(" Using default texture cache flush rate of %.2f%%", |
| 55 | DEFAULT_TEXTURE_CACHE_FLUSH_RATE * 100.0f); |
| 56 | } |
| 57 | |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 58 | init(); |
| 59 | } |
| 60 | |
Romain Guy | 7d139ba | 2010-07-02 11:20:34 -0700 | [diff] [blame] | 61 | TextureCache::TextureCache(uint32_t maxByteSize): |
Leon Scroggins III | d1ad5e6 | 2014-05-05 12:50:38 -0400 | [diff] [blame] | 62 | mCache(LruCache<const SkPixelRef*, Texture*>::kUnlimitedCapacity), |
Romain Guy | 121e224 | 2010-07-01 18:26:52 -0700 | [diff] [blame] | 63 | mSize(0), mMaxSize(maxByteSize) { |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 64 | init(); |
Romain Guy | ce0537b | 2010-06-29 21:05:21 -0700 | [diff] [blame] | 65 | } |
| 66 | |
| 67 | TextureCache::~TextureCache() { |
| 68 | mCache.clear(); |
| 69 | } |
| 70 | |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 71 | void TextureCache::init() { |
| 72 | mCache.setOnEntryRemovedListener(this); |
| 73 | |
| 74 | glGetIntegerv(GL_MAX_TEXTURE_SIZE, &mMaxTextureSize); |
Romain Guy | f683447 | 2011-01-23 13:32:12 -0800 | [diff] [blame] | 75 | INIT_LOGD(" Maximum texture dimension is %d pixels", mMaxTextureSize); |
Romain Guy | e190aa6 | 2010-11-10 19:01:29 -0800 | [diff] [blame] | 76 | |
| 77 | mDebugEnabled = readDebugLevel() & kDebugCaches; |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 78 | } |
| 79 | |
Romain Guy | 121e224 | 2010-07-01 18:26:52 -0700 | [diff] [blame] | 80 | /////////////////////////////////////////////////////////////////////////////// |
| 81 | // Size management |
| 82 | /////////////////////////////////////////////////////////////////////////////// |
| 83 | |
Romain Guy | 7d139ba | 2010-07-02 11:20:34 -0700 | [diff] [blame] | 84 | uint32_t TextureCache::getSize() { |
Romain Guy | 121e224 | 2010-07-01 18:26:52 -0700 | [diff] [blame] | 85 | return mSize; |
| 86 | } |
| 87 | |
Romain Guy | 7d139ba | 2010-07-02 11:20:34 -0700 | [diff] [blame] | 88 | uint32_t TextureCache::getMaxSize() { |
Romain Guy | 121e224 | 2010-07-01 18:26:52 -0700 | [diff] [blame] | 89 | return mMaxSize; |
| 90 | } |
| 91 | |
Romain Guy | 7d139ba | 2010-07-02 11:20:34 -0700 | [diff] [blame] | 92 | void TextureCache::setMaxSize(uint32_t maxSize) { |
Romain Guy | 121e224 | 2010-07-01 18:26:52 -0700 | [diff] [blame] | 93 | mMaxSize = maxSize; |
| 94 | while (mSize > mMaxSize) { |
| 95 | mCache.removeOldest(); |
Romain Guy | ce0537b | 2010-06-29 21:05:21 -0700 | [diff] [blame] | 96 | } |
| 97 | } |
| 98 | |
Romain Guy | eca0ca2 | 2011-11-04 15:12:29 -0700 | [diff] [blame] | 99 | void TextureCache::setFlushRate(float flushRate) { |
| 100 | mFlushRate = fmaxf(0.0f, fminf(1.0f, flushRate)); |
| 101 | } |
| 102 | |
Romain Guy | 121e224 | 2010-07-01 18:26:52 -0700 | [diff] [blame] | 103 | /////////////////////////////////////////////////////////////////////////////// |
| 104 | // Callbacks |
| 105 | /////////////////////////////////////////////////////////////////////////////// |
| 106 | |
Leon Scroggins III | d1ad5e6 | 2014-05-05 12:50:38 -0400 | [diff] [blame] | 107 | void TextureCache::operator()(const SkPixelRef*&, Texture*& texture) { |
Romain Guy | 9aaa826 | 2010-09-08 15:15:43 -0700 | [diff] [blame] | 108 | // This will be called already locked |
Romain Guy | 121e224 | 2010-07-01 18:26:52 -0700 | [diff] [blame] | 109 | if (texture) { |
Romain Guy | 9aaa826 | 2010-09-08 15:15:43 -0700 | [diff] [blame] | 110 | mSize -= texture->bitmapSize; |
Romain Guy | 9e10841 | 2010-11-09 14:35:20 -0800 | [diff] [blame] | 111 | TEXTURE_LOGD("TextureCache::callback: name, removed size, mSize = %d, %d, %d", |
| 112 | texture->id, texture->bitmapSize, mSize); |
Romain Guy | e190aa6 | 2010-11-10 19:01:29 -0800 | [diff] [blame] | 113 | if (mDebugEnabled) { |
Steve Block | 5baa3a6 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 114 | ALOGD("Texture deleted, size = %d", texture->bitmapSize); |
Romain Guy | e190aa6 | 2010-11-10 19:01:29 -0800 | [diff] [blame] | 115 | } |
Romain Guy | be1b127 | 2013-06-06 14:02:54 -0700 | [diff] [blame] | 116 | texture->deleteTexture(); |
Romain Guy | 121e224 | 2010-07-01 18:26:52 -0700 | [diff] [blame] | 117 | delete texture; |
| 118 | } |
| 119 | } |
| 120 | |
| 121 | /////////////////////////////////////////////////////////////////////////////// |
| 122 | // Caching |
| 123 | /////////////////////////////////////////////////////////////////////////////// |
| 124 | |
John Reck | 860d155 | 2014-04-11 19:15:05 -0700 | [diff] [blame] | 125 | void TextureCache::resetMarkInUse() { |
Leon Scroggins III | d1ad5e6 | 2014-05-05 12:50:38 -0400 | [diff] [blame] | 126 | LruCache<const SkPixelRef*, Texture*>::Iterator iter(mCache); |
John Reck | 860d155 | 2014-04-11 19:15:05 -0700 | [diff] [blame] | 127 | while (iter.next()) { |
| 128 | iter.value()->isInUse = false; |
| 129 | } |
| 130 | } |
| 131 | |
| 132 | bool TextureCache::canMakeTextureFromBitmap(const SkBitmap* bitmap) { |
| 133 | if (bitmap->width() > mMaxTextureSize || bitmap->height() > mMaxTextureSize) { |
| 134 | ALOGW("Bitmap too large to be uploaded into a texture (%dx%d, max=%dx%d)", |
| 135 | bitmap->width(), bitmap->height(), mMaxTextureSize, mMaxTextureSize); |
| 136 | return false; |
| 137 | } |
| 138 | return true; |
| 139 | } |
| 140 | |
| 141 | // Returns a prepared Texture* that either is already in the cache or can fit |
| 142 | // in the cache (and is thus added to the cache) |
| 143 | Texture* TextureCache::getCachedTexture(const SkBitmap* bitmap) { |
Leon Scroggins III | d1ad5e6 | 2014-05-05 12:50:38 -0400 | [diff] [blame] | 144 | Texture* texture = mCache.get(bitmap->pixelRef()); |
Romain Guy | a2341a9 | 2010-09-08 18:04:33 -0700 | [diff] [blame] | 145 | |
Romain Guy | ce0537b | 2010-06-29 21:05:21 -0700 | [diff] [blame] | 146 | if (!texture) { |
John Reck | 860d155 | 2014-04-11 19:15:05 -0700 | [diff] [blame] | 147 | if (!canMakeTextureFromBitmap(bitmap)) { |
Romain Guy | 9cccc2b | 2010-08-07 23:46:15 -0700 | [diff] [blame] | 148 | return NULL; |
| 149 | } |
| 150 | |
Romain Guy | 7d139ba | 2010-07-02 11:20:34 -0700 | [diff] [blame] | 151 | const uint32_t size = bitmap->rowBytes() * bitmap->height(); |
John Reck | 860d155 | 2014-04-11 19:15:05 -0700 | [diff] [blame] | 152 | bool canCache = size < mMaxSize; |
Romain Guy | 121e224 | 2010-07-01 18:26:52 -0700 | [diff] [blame] | 153 | // Don't even try to cache a bitmap that's bigger than the cache |
John Reck | 860d155 | 2014-04-11 19:15:05 -0700 | [diff] [blame] | 154 | while (canCache && mSize + size > mMaxSize) { |
| 155 | Texture* oldest = mCache.peekOldestValue(); |
| 156 | if (oldest && !oldest->isInUse) { |
Romain Guy | 121e224 | 2010-07-01 18:26:52 -0700 | [diff] [blame] | 157 | mCache.removeOldest(); |
John Reck | 860d155 | 2014-04-11 19:15:05 -0700 | [diff] [blame] | 158 | } else { |
| 159 | canCache = false; |
Romain Guy | 121e224 | 2010-07-01 18:26:52 -0700 | [diff] [blame] | 160 | } |
| 161 | } |
| 162 | |
John Reck | 860d155 | 2014-04-11 19:15:05 -0700 | [diff] [blame] | 163 | if (canCache) { |
| 164 | texture = new Texture(); |
| 165 | texture->bitmapSize = size; |
| 166 | generateTexture(bitmap, texture, false); |
Romain Guy | 121e224 | 2010-07-01 18:26:52 -0700 | [diff] [blame] | 167 | |
Romain Guy | 121e224 | 2010-07-01 18:26:52 -0700 | [diff] [blame] | 168 | mSize += size; |
Romain Guy | 9e10841 | 2010-11-09 14:35:20 -0800 | [diff] [blame] | 169 | TEXTURE_LOGD("TextureCache::get: create texture(%p): name, size, mSize = %d, %d, %d", |
| 170 | bitmap, texture->id, size, mSize); |
Romain Guy | e190aa6 | 2010-11-10 19:01:29 -0800 | [diff] [blame] | 171 | if (mDebugEnabled) { |
Steve Block | 5baa3a6 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 172 | ALOGD("Texture created, size = %d", size); |
Romain Guy | e190aa6 | 2010-11-10 19:01:29 -0800 | [diff] [blame] | 173 | } |
Leon Scroggins III | d1ad5e6 | 2014-05-05 12:50:38 -0400 | [diff] [blame] | 174 | mCache.put(bitmap->pixelRef(), texture); |
Romain Guy | 121e224 | 2010-07-01 18:26:52 -0700 | [diff] [blame] | 175 | } |
John Reck | 860d155 | 2014-04-11 19:15:05 -0700 | [diff] [blame] | 176 | } else if (!texture->isInUse && bitmap->getGenerationID() != texture->generation) { |
| 177 | // Texture was in the cache but is dirty, re-upload |
| 178 | // TODO: Re-adjust the cache size if the bitmap's dimensions have changed |
Romain Guy | fe88094 | 2010-06-30 16:05:32 -0700 | [diff] [blame] | 179 | generateTexture(bitmap, texture, true); |
Romain Guy | ce0537b | 2010-06-29 21:05:21 -0700 | [diff] [blame] | 180 | } |
Romain Guy | 22158e1 | 2010-08-06 11:18:34 -0700 | [diff] [blame] | 181 | |
Romain Guy | ce0537b | 2010-06-29 21:05:21 -0700 | [diff] [blame] | 182 | return texture; |
| 183 | } |
| 184 | |
John Reck | 860d155 | 2014-04-11 19:15:05 -0700 | [diff] [blame] | 185 | bool TextureCache::prefetchAndMarkInUse(const SkBitmap* bitmap) { |
| 186 | Texture* texture = getCachedTexture(bitmap); |
| 187 | if (texture) { |
| 188 | texture->isInUse = true; |
| 189 | } |
| 190 | return texture; |
| 191 | } |
| 192 | |
| 193 | Texture* TextureCache::get(const SkBitmap* bitmap) { |
| 194 | Texture* texture = getCachedTexture(bitmap); |
| 195 | |
| 196 | if (!texture) { |
| 197 | if (!canMakeTextureFromBitmap(bitmap)) { |
| 198 | return NULL; |
| 199 | } |
| 200 | |
| 201 | const uint32_t size = bitmap->rowBytes() * bitmap->height(); |
| 202 | texture = new Texture(); |
| 203 | texture->bitmapSize = size; |
| 204 | generateTexture(bitmap, texture, false); |
| 205 | texture->cleanup = true; |
| 206 | } |
| 207 | |
| 208 | return texture; |
| 209 | } |
| 210 | |
Chris Craik | d218a92 | 2014-01-02 17:13:34 -0800 | [diff] [blame] | 211 | Texture* TextureCache::getTransient(const SkBitmap* bitmap) { |
Romain Guy | 8aa195d | 2013-06-04 18:00:09 -0700 | [diff] [blame] | 212 | Texture* texture = new Texture(); |
Romain Guy | e651cc6 | 2012-05-14 19:44:40 -0700 | [diff] [blame] | 213 | texture->bitmapSize = bitmap->rowBytes() * bitmap->height(); |
| 214 | texture->cleanup = true; |
| 215 | |
| 216 | generateTexture(bitmap, texture, false); |
| 217 | |
| 218 | return texture; |
| 219 | } |
| 220 | |
Chris Craik | d218a92 | 2014-01-02 17:13:34 -0800 | [diff] [blame] | 221 | void TextureCache::remove(const SkBitmap* bitmap) { |
Leon Scroggins III | d1ad5e6 | 2014-05-05 12:50:38 -0400 | [diff] [blame] | 222 | mCache.remove(bitmap->pixelRef()); |
Romain Guy | ce0537b | 2010-06-29 21:05:21 -0700 | [diff] [blame] | 223 | } |
| 224 | |
Chris Craik | d218a92 | 2014-01-02 17:13:34 -0800 | [diff] [blame] | 225 | void TextureCache::removeDeferred(const SkBitmap* bitmap) { |
Romain Guy | 9aaa826 | 2010-09-08 15:15:43 -0700 | [diff] [blame] | 226 | Mutex::Autolock _l(mLock); |
Romain Guy | fe48f65 | 2010-11-11 15:36:56 -0800 | [diff] [blame] | 227 | mGarbage.push(bitmap); |
| 228 | } |
| 229 | |
| 230 | void TextureCache::clearGarbage() { |
| 231 | Mutex::Autolock _l(mLock); |
| 232 | size_t count = mGarbage.size(); |
| 233 | for (size_t i = 0; i < count; i++) { |
Sangkyu Lee | 36fad8f | 2014-01-09 14:11:57 +0900 | [diff] [blame] | 234 | const SkBitmap* bitmap = mGarbage.itemAt(i); |
Leon Scroggins III | d1ad5e6 | 2014-05-05 12:50:38 -0400 | [diff] [blame] | 235 | mCache.remove(bitmap->pixelRef()); |
Sangkyu Lee | 36fad8f | 2014-01-09 14:11:57 +0900 | [diff] [blame] | 236 | delete bitmap; |
Romain Guy | fe48f65 | 2010-11-11 15:36:56 -0800 | [diff] [blame] | 237 | } |
| 238 | mGarbage.clear(); |
| 239 | } |
| 240 | |
| 241 | void TextureCache::clear() { |
Romain Guy | ce0537b | 2010-06-29 21:05:21 -0700 | [diff] [blame] | 242 | mCache.clear(); |
Romain Guy | 912a7b3 | 2011-07-26 18:57:28 -0700 | [diff] [blame] | 243 | TEXTURE_LOGD("TextureCache:clear(), mSize = %d", mSize); |
Romain Guy | ce0537b | 2010-06-29 21:05:21 -0700 | [diff] [blame] | 244 | } |
| 245 | |
Romain Guy | eca0ca2 | 2011-11-04 15:12:29 -0700 | [diff] [blame] | 246 | void TextureCache::flush() { |
| 247 | if (mFlushRate >= 1.0f || mCache.size() == 0) return; |
| 248 | if (mFlushRate <= 0.0f) { |
| 249 | clear(); |
| 250 | return; |
| 251 | } |
| 252 | |
| 253 | uint32_t targetSize = uint32_t(mSize * mFlushRate); |
| 254 | TEXTURE_LOGD("TextureCache::flush: target size: %d", targetSize); |
| 255 | |
| 256 | while (mSize > targetSize) { |
| 257 | mCache.removeOldest(); |
| 258 | } |
| 259 | } |
| 260 | |
Chris Craik | d218a92 | 2014-01-02 17:13:34 -0800 | [diff] [blame] | 261 | void TextureCache::generateTexture(const SkBitmap* bitmap, Texture* texture, bool regenerate) { |
Romain Guy | c1396e9 | 2010-06-30 17:56:19 -0700 | [diff] [blame] | 262 | SkAutoLockPixels alp(*bitmap); |
Romain Guy | 9aaa826 | 2010-09-08 15:15:43 -0700 | [diff] [blame] | 263 | |
Romain Guy | c1396e9 | 2010-06-30 17:56:19 -0700 | [diff] [blame] | 264 | if (!bitmap->readyToDraw()) { |
Steve Block | 3762c31 | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 265 | ALOGE("Cannot generate texture from bitmap"); |
Romain Guy | c1396e9 | 2010-06-30 17:56:19 -0700 | [diff] [blame] | 266 | return; |
| 267 | } |
| 268 | |
John Reck | ec4cefc | 2014-07-29 09:49:13 -0700 | [diff] [blame] | 269 | ATRACE_CALL(); |
| 270 | |
Romain Guy | 5243957 | 2012-10-17 12:14:11 -0700 | [diff] [blame] | 271 | // We could also enable mipmapping if both bitmap dimensions are powers |
| 272 | // of 2 but we'd have to deal with size changes. Let's keep this simple |
Romain Guy | 3bbacf2 | 2013-02-06 16:51:04 -0800 | [diff] [blame] | 273 | const bool canMipMap = Extensions::getInstance().hasNPot(); |
Romain Guy | 5243957 | 2012-10-17 12:14:11 -0700 | [diff] [blame] | 274 | |
Romain Guy | 713e1bb | 2012-10-16 18:44:09 -0700 | [diff] [blame] | 275 | // If the texture had mipmap enabled but not anymore, |
| 276 | // force a glTexImage2D to discard the mipmap levels |
Romain Guy | 29d8997 | 2010-09-22 16:10:57 -0700 | [diff] [blame] | 277 | const bool resize = !regenerate || bitmap->width() != int(texture->width) || |
Romain Guy | 713e1bb | 2012-10-16 18:44:09 -0700 | [diff] [blame] | 278 | bitmap->height() != int(texture->height) || |
Romain Guy | 5243957 | 2012-10-17 12:14:11 -0700 | [diff] [blame] | 279 | (regenerate && canMipMap && texture->mipMap && !bitmap->hasHardwareMipMap()); |
Romain Guy | ce0537b | 2010-06-29 21:05:21 -0700 | [diff] [blame] | 280 | |
Romain Guy | 8c749f8 | 2010-09-22 14:13:32 -0700 | [diff] [blame] | 281 | if (!regenerate) { |
Romain Guy | fe88094 | 2010-06-30 16:05:32 -0700 | [diff] [blame] | 282 | glGenTextures(1, &texture->id); |
| 283 | } |
| 284 | |
Romain Guy | 8c749f8 | 2010-09-22 14:13:32 -0700 | [diff] [blame] | 285 | texture->generation = bitmap->getGenerationID(); |
| 286 | texture->width = bitmap->width(); |
| 287 | texture->height = bitmap->height(); |
| 288 | |
Romain Guy | 8aa195d | 2013-06-04 18:00:09 -0700 | [diff] [blame] | 289 | Caches::getInstance().bindTexture(texture->id); |
Romain Guy | c1396e9 | 2010-06-30 17:56:19 -0700 | [diff] [blame] | 290 | |
Mike Reed | 1103b32 | 2014-07-08 12:36:44 -0400 | [diff] [blame] | 291 | switch (bitmap->colorType()) { |
| 292 | case kAlpha_8_SkColorType: |
Romain Guy | d43b22d | 2012-10-16 11:25:06 -0700 | [diff] [blame] | 293 | glPixelStorei(GL_UNPACK_ALIGNMENT, 1); |
Lu, Shenghua | c5e0a29 | 2013-11-27 20:16:43 +0800 | [diff] [blame] | 294 | uploadToTexture(resize, GL_ALPHA, bitmap->rowBytesAsPixels(), bitmap->bytesPerPixel(), |
Romain Guy | 318ae7b | 2013-09-24 18:44:54 -0700 | [diff] [blame] | 295 | texture->width, texture->height, GL_UNSIGNED_BYTE, bitmap->getPixels()); |
Romain Guy | 8c749f8 | 2010-09-22 14:13:32 -0700 | [diff] [blame] | 296 | texture->blend = true; |
Romain Guy | bd0e6aa | 2010-07-22 18:50:12 -0700 | [diff] [blame] | 297 | break; |
Mike Reed | 1103b32 | 2014-07-08 12:36:44 -0400 | [diff] [blame] | 298 | case kRGB_565_SkColorType: |
Romain Guy | d43b22d | 2012-10-16 11:25:06 -0700 | [diff] [blame] | 299 | glPixelStorei(GL_UNPACK_ALIGNMENT, bitmap->bytesPerPixel()); |
Lu, Shenghua | c5e0a29 | 2013-11-27 20:16:43 +0800 | [diff] [blame] | 300 | uploadToTexture(resize, GL_RGB, bitmap->rowBytesAsPixels(), bitmap->bytesPerPixel(), |
Romain Guy | 318ae7b | 2013-09-24 18:44:54 -0700 | [diff] [blame] | 301 | texture->width, texture->height, GL_UNSIGNED_SHORT_5_6_5, bitmap->getPixels()); |
Romain Guy | c1396e9 | 2010-06-30 17:56:19 -0700 | [diff] [blame] | 302 | texture->blend = false; |
Romain Guy | c1396e9 | 2010-06-30 17:56:19 -0700 | [diff] [blame] | 303 | break; |
Mike Reed | 1103b32 | 2014-07-08 12:36:44 -0400 | [diff] [blame] | 304 | case kN32_SkColorType: |
Romain Guy | d43b22d | 2012-10-16 11:25:06 -0700 | [diff] [blame] | 305 | glPixelStorei(GL_UNPACK_ALIGNMENT, bitmap->bytesPerPixel()); |
Lu, Shenghua | c5e0a29 | 2013-11-27 20:16:43 +0800 | [diff] [blame] | 306 | uploadToTexture(resize, GL_RGBA, bitmap->rowBytesAsPixels(), bitmap->bytesPerPixel(), |
Romain Guy | 318ae7b | 2013-09-24 18:44:54 -0700 | [diff] [blame] | 307 | texture->width, texture->height, GL_UNSIGNED_BYTE, bitmap->getPixels()); |
Romain Guy | e9e7fd0 | 2010-08-19 14:45:42 -0700 | [diff] [blame] | 308 | // Do this after calling getPixels() to make sure Skia's deferred |
| 309 | // decoding happened |
| 310 | texture->blend = !bitmap->isOpaque(); |
Romain Guy | c1396e9 | 2010-06-30 17:56:19 -0700 | [diff] [blame] | 311 | break; |
Mike Reed | 1103b32 | 2014-07-08 12:36:44 -0400 | [diff] [blame] | 312 | case kARGB_4444_SkColorType: |
| 313 | case kIndex_8_SkColorType: |
Romain Guy | d43b22d | 2012-10-16 11:25:06 -0700 | [diff] [blame] | 314 | glPixelStorei(GL_UNPACK_ALIGNMENT, bitmap->bytesPerPixel()); |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 315 | uploadLoFiTexture(resize, bitmap, texture->width, texture->height); |
Romain Guy | b37cbec | 2011-02-24 17:21:29 -0800 | [diff] [blame] | 316 | texture->blend = !bitmap->isOpaque(); |
Romain Guy | 5b3b352 | 2010-10-27 18:57:51 -0700 | [diff] [blame] | 317 | break; |
Romain Guy | c1396e9 | 2010-06-30 17:56:19 -0700 | [diff] [blame] | 318 | default: |
Mike Reed | 1103b32 | 2014-07-08 12:36:44 -0400 | [diff] [blame] | 319 | ALOGW("Unsupported bitmap colorType: %d", bitmap->colorType()); |
Romain Guy | c1396e9 | 2010-06-30 17:56:19 -0700 | [diff] [blame] | 320 | break; |
| 321 | } |
Romain Guy | ce0537b | 2010-06-29 21:05:21 -0700 | [diff] [blame] | 322 | |
Romain Guy | 5243957 | 2012-10-17 12:14:11 -0700 | [diff] [blame] | 323 | if (canMipMap) { |
Romain Guy | 713e1bb | 2012-10-16 18:44:09 -0700 | [diff] [blame] | 324 | texture->mipMap = bitmap->hasHardwareMipMap(); |
| 325 | if (texture->mipMap) { |
| 326 | glGenerateMipmap(GL_TEXTURE_2D); |
| 327 | } |
| 328 | } |
| 329 | |
Romain Guy | d21b6e1 | 2011-11-30 20:21:23 -0800 | [diff] [blame] | 330 | if (!regenerate) { |
| 331 | texture->setFilter(GL_NEAREST); |
| 332 | texture->setWrap(GL_CLAMP_TO_EDGE); |
| 333 | } |
Romain Guy | ce0537b | 2010-06-29 21:05:21 -0700 | [diff] [blame] | 334 | } |
| 335 | |
Chris Craik | d218a92 | 2014-01-02 17:13:34 -0800 | [diff] [blame] | 336 | void TextureCache::uploadLoFiTexture(bool resize, const SkBitmap* bitmap, |
Romain Guy | 7adaf3d | 2010-10-05 14:58:09 -0700 | [diff] [blame] | 337 | uint32_t width, uint32_t height) { |
| 338 | SkBitmap rgbaBitmap; |
Mike Reed | b933055 | 2014-06-16 17:31:48 -0400 | [diff] [blame] | 339 | rgbaBitmap.allocPixels(SkImageInfo::MakeN32(width, height, bitmap->alphaType())); |
Romain Guy | 7adaf3d | 2010-10-05 14:58:09 -0700 | [diff] [blame] | 340 | rgbaBitmap.eraseColor(0); |
| 341 | |
| 342 | SkCanvas canvas(rgbaBitmap); |
| 343 | canvas.drawBitmap(*bitmap, 0.0f, 0.0f, NULL); |
| 344 | |
Lu, Shenghua | c5e0a29 | 2013-11-27 20:16:43 +0800 | [diff] [blame] | 345 | uploadToTexture(resize, GL_RGBA, rgbaBitmap.rowBytesAsPixels(), rgbaBitmap.bytesPerPixel(), |
| 346 | width, height, GL_UNSIGNED_BYTE, rgbaBitmap.getPixels()); |
Romain Guy | 7adaf3d | 2010-10-05 14:58:09 -0700 | [diff] [blame] | 347 | } |
| 348 | |
Lu, Shenghua | c5e0a29 | 2013-11-27 20:16:43 +0800 | [diff] [blame] | 349 | void TextureCache::uploadToTexture(bool resize, GLenum format, GLsizei stride, GLsizei bpp, |
Romain Guy | 318ae7b | 2013-09-24 18:44:54 -0700 | [diff] [blame] | 350 | GLsizei width, GLsizei height, GLenum type, const GLvoid * data) { |
Romain Guy | 318ae7b | 2013-09-24 18:44:54 -0700 | [diff] [blame] | 351 | const bool useStride = stride != width && Extensions::getInstance().hasUnpackRowLength(); |
Lu, Shenghua | c5e0a29 | 2013-11-27 20:16:43 +0800 | [diff] [blame] | 352 | if ((stride == width) || useStride) { |
| 353 | if (useStride) { |
| 354 | glPixelStorei(GL_UNPACK_ROW_LENGTH, stride); |
| 355 | } |
Romain Guy | 318ae7b | 2013-09-24 18:44:54 -0700 | [diff] [blame] | 356 | |
Lu, Shenghua | c5e0a29 | 2013-11-27 20:16:43 +0800 | [diff] [blame] | 357 | if (resize) { |
| 358 | glTexImage2D(GL_TEXTURE_2D, 0, format, width, height, 0, format, type, data); |
| 359 | } else { |
| 360 | glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, width, height, format, type, data); |
| 361 | } |
| 362 | |
| 363 | if (useStride) { |
| 364 | glPixelStorei(GL_UNPACK_ROW_LENGTH, 0); |
| 365 | } |
Romain Guy | 8c749f8 | 2010-09-22 14:13:32 -0700 | [diff] [blame] | 366 | } else { |
Lu, Shenghua | c5e0a29 | 2013-11-27 20:16:43 +0800 | [diff] [blame] | 367 | // With OpenGL ES 2.0 we need to copy the bitmap in a temporary buffer |
| 368 | // if the stride doesn't match the width |
Romain Guy | 318ae7b | 2013-09-24 18:44:54 -0700 | [diff] [blame] | 369 | |
Lu, Shenghua | c5e0a29 | 2013-11-27 20:16:43 +0800 | [diff] [blame] | 370 | GLvoid * temp = (GLvoid *) malloc(width * height * bpp); |
| 371 | if (!temp) return; |
| 372 | |
| 373 | uint8_t * pDst = (uint8_t *)temp; |
| 374 | uint8_t * pSrc = (uint8_t *)data; |
| 375 | for (GLsizei i = 0; i < height; i++) { |
| 376 | memcpy(pDst, pSrc, width * bpp); |
| 377 | pDst += width * bpp; |
| 378 | pSrc += stride * bpp; |
| 379 | } |
| 380 | |
| 381 | if (resize) { |
| 382 | glTexImage2D(GL_TEXTURE_2D, 0, format, width, height, 0, format, type, temp); |
| 383 | } else { |
| 384 | glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, width, height, format, type, temp); |
| 385 | } |
| 386 | |
| 387 | free(temp); |
Romain Guy | 318ae7b | 2013-09-24 18:44:54 -0700 | [diff] [blame] | 388 | } |
Romain Guy | 8c749f8 | 2010-09-22 14:13:32 -0700 | [diff] [blame] | 389 | } |
| 390 | |
Romain Guy | ce0537b | 2010-06-29 21:05:21 -0700 | [diff] [blame] | 391 | }; // namespace uirenderer |
| 392 | }; // namespace android |