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 | 121e2242 | 2010-07-01 18:26:52 -0700 | [diff] [blame^] | 17 | #define LOG_TAG "OpenGLRenderer" |
| 18 | |
Romain Guy | ce0537b | 2010-06-29 21:05:21 -0700 | [diff] [blame] | 19 | #include <GLES2/gl2.h> |
| 20 | |
| 21 | #include "TextureCache.h" |
| 22 | |
| 23 | namespace android { |
| 24 | namespace uirenderer { |
| 25 | |
Romain Guy | 121e2242 | 2010-07-01 18:26:52 -0700 | [diff] [blame^] | 26 | /////////////////////////////////////////////////////////////////////////////// |
| 27 | // Constructors/destructor |
| 28 | /////////////////////////////////////////////////////////////////////////////// |
| 29 | |
| 30 | TextureCache::TextureCache(unsigned int maxByteSize): |
| 31 | mCache(GenerationCache<SkBitmap, Texture>::kUnlimitedCapacity), |
| 32 | mSize(0), mMaxSize(maxByteSize) { |
Romain Guy | ce0537b | 2010-06-29 21:05:21 -0700 | [diff] [blame] | 33 | mCache.setOnEntryRemovedListener(this); |
| 34 | } |
| 35 | |
| 36 | TextureCache::~TextureCache() { |
| 37 | mCache.clear(); |
| 38 | } |
| 39 | |
Romain Guy | 121e2242 | 2010-07-01 18:26:52 -0700 | [diff] [blame^] | 40 | /////////////////////////////////////////////////////////////////////////////// |
| 41 | // Size management |
| 42 | /////////////////////////////////////////////////////////////////////////////// |
| 43 | |
| 44 | unsigned int TextureCache::getSize() { |
| 45 | return mSize; |
| 46 | } |
| 47 | |
| 48 | unsigned int TextureCache::getMaxSize() { |
| 49 | return mMaxSize; |
| 50 | } |
| 51 | |
| 52 | void TextureCache::setMaxSize(unsigned int maxSize) { |
| 53 | mMaxSize = maxSize; |
| 54 | while (mSize > mMaxSize) { |
| 55 | mCache.removeOldest(); |
Romain Guy | ce0537b | 2010-06-29 21:05:21 -0700 | [diff] [blame] | 56 | } |
| 57 | } |
| 58 | |
Romain Guy | 121e2242 | 2010-07-01 18:26:52 -0700 | [diff] [blame^] | 59 | /////////////////////////////////////////////////////////////////////////////// |
| 60 | // Callbacks |
| 61 | /////////////////////////////////////////////////////////////////////////////// |
| 62 | |
| 63 | void TextureCache::operator()(SkBitmap* bitmap, Texture* texture) { |
| 64 | if (bitmap) { |
| 65 | const unsigned int size = bitmap->rowBytes() * bitmap->height(); |
| 66 | mSize -= size; |
| 67 | } |
| 68 | |
| 69 | if (texture) { |
| 70 | glDeleteTextures(1, &texture->id); |
| 71 | delete texture; |
| 72 | } |
| 73 | } |
| 74 | |
| 75 | /////////////////////////////////////////////////////////////////////////////// |
| 76 | // Caching |
| 77 | /////////////////////////////////////////////////////////////////////////////// |
| 78 | |
Romain Guy | ce0537b | 2010-06-29 21:05:21 -0700 | [diff] [blame] | 79 | Texture* TextureCache::get(SkBitmap* bitmap) { |
| 80 | Texture* texture = mCache.get(bitmap); |
| 81 | if (!texture) { |
Romain Guy | 121e2242 | 2010-07-01 18:26:52 -0700 | [diff] [blame^] | 82 | const unsigned int size = bitmap->rowBytes() * bitmap->height(); |
| 83 | // Don't even try to cache a bitmap that's bigger than the cache |
| 84 | if (size < mMaxSize) { |
| 85 | while (mSize + size > mMaxSize) { |
| 86 | mCache.removeOldest(); |
| 87 | } |
| 88 | } |
| 89 | |
Romain Guy | 364703c | 2010-06-30 15:51:03 -0700 | [diff] [blame] | 90 | texture = new Texture; |
Romain Guy | c1396e9 | 2010-06-30 17:56:19 -0700 | [diff] [blame] | 91 | generateTexture(bitmap, texture, false); |
Romain Guy | 121e2242 | 2010-07-01 18:26:52 -0700 | [diff] [blame^] | 92 | |
| 93 | if (size < mMaxSize) { |
| 94 | mSize += size; |
| 95 | mCache.put(bitmap, texture); |
| 96 | } |
Romain Guy | fe88094 | 2010-06-30 16:05:32 -0700 | [diff] [blame] | 97 | } else if (bitmap->getGenerationID() != texture->generation) { |
| 98 | generateTexture(bitmap, texture, true); |
Romain Guy | ce0537b | 2010-06-29 21:05:21 -0700 | [diff] [blame] | 99 | } |
| 100 | return texture; |
| 101 | } |
| 102 | |
Romain Guy | 121e2242 | 2010-07-01 18:26:52 -0700 | [diff] [blame^] | 103 | void TextureCache::remove(SkBitmap* bitmap) { |
| 104 | mCache.remove(bitmap); |
Romain Guy | ce0537b | 2010-06-29 21:05:21 -0700 | [diff] [blame] | 105 | } |
| 106 | |
| 107 | void TextureCache::clear() { |
| 108 | mCache.clear(); |
| 109 | } |
| 110 | |
Romain Guy | fe88094 | 2010-06-30 16:05:32 -0700 | [diff] [blame] | 111 | void TextureCache::generateTexture(SkBitmap* bitmap, Texture* texture, bool regenerate) { |
Romain Guy | c1396e9 | 2010-06-30 17:56:19 -0700 | [diff] [blame] | 112 | SkAutoLockPixels alp(*bitmap); |
| 113 | if (!bitmap->readyToDraw()) { |
| 114 | LOGE("Cannot generate texture from bitmap"); |
| 115 | return; |
| 116 | } |
| 117 | |
Romain Guy | fe88094 | 2010-06-30 16:05:32 -0700 | [diff] [blame] | 118 | if (!regenerate) { |
Romain Guy | c1396e9 | 2010-06-30 17:56:19 -0700 | [diff] [blame] | 119 | texture->generation = bitmap->getGenerationID(); |
Romain Guy | fe88094 | 2010-06-30 16:05:32 -0700 | [diff] [blame] | 120 | texture->width = bitmap->width(); |
| 121 | texture->height = bitmap->height(); |
Romain Guy | ce0537b | 2010-06-29 21:05:21 -0700 | [diff] [blame] | 122 | |
Romain Guy | fe88094 | 2010-06-30 16:05:32 -0700 | [diff] [blame] | 123 | glGenTextures(1, &texture->id); |
| 124 | } |
| 125 | |
Romain Guy | ce0537b | 2010-06-29 21:05:21 -0700 | [diff] [blame] | 126 | glBindTexture(GL_TEXTURE_2D, texture->id); |
Romain Guy | c1396e9 | 2010-06-30 17:56:19 -0700 | [diff] [blame] | 127 | glPixelStorei(GL_UNPACK_ALIGNMENT, bitmap->bytesPerPixel()); |
| 128 | |
| 129 | switch (bitmap->getConfig()) { |
| 130 | case SkBitmap::kRGB_565_Config: |
| 131 | texture->blend = false; |
| 132 | glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, bitmap->rowBytesAsPixels(), texture->height, 0, |
| 133 | GL_RGB, GL_UNSIGNED_SHORT_5_6_5, bitmap->getPixels()); |
| 134 | break; |
| 135 | case SkBitmap::kARGB_8888_Config: |
| 136 | texture->blend = true; |
| 137 | glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, bitmap->rowBytesAsPixels(), texture->height, 0, |
| 138 | GL_RGBA, GL_UNSIGNED_BYTE, bitmap->getPixels()); |
| 139 | break; |
| 140 | default: |
| 141 | break; |
| 142 | } |
Romain Guy | ce0537b | 2010-06-29 21:05:21 -0700 | [diff] [blame] | 143 | |
| 144 | glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); |
| 145 | glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); |
Romain Guy | 8ba548f | 2010-06-30 19:21:21 -0700 | [diff] [blame] | 146 | |
Romain Guy | ce0537b | 2010-06-29 21:05:21 -0700 | [diff] [blame] | 147 | glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE); |
| 148 | glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE); |
| 149 | |
Romain Guy | fe88094 | 2010-06-30 16:05:32 -0700 | [diff] [blame] | 150 | glBindTexture(GL_TEXTURE_2D, 0); |
Romain Guy | ce0537b | 2010-06-29 21:05:21 -0700 | [diff] [blame] | 151 | } |
| 152 | |
| 153 | }; // namespace uirenderer |
| 154 | }; // namespace android |