Romain Guy | dda5702 | 2010-07-06 11:39:32 -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 | |
| 17 | #define LOG_TAG "OpenGLRenderer" |
| 18 | |
| 19 | #include <GLES2/gl2.h> |
| 20 | |
Romain Guy | f18fd99 | 2010-07-08 11:45:51 -0700 | [diff] [blame] | 21 | #include <utils/Log.h> |
| 22 | |
Romain Guy | c9855a5 | 2011-01-21 21:14:15 -0800 | [diff] [blame] | 23 | #include "Debug.h" |
Romain Guy | dda5702 | 2010-07-06 11:39:32 -0700 | [diff] [blame] | 24 | #include "LayerCache.h" |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 25 | #include "Properties.h" |
Romain Guy | dda5702 | 2010-07-06 11:39:32 -0700 | [diff] [blame] | 26 | |
| 27 | namespace android { |
| 28 | namespace uirenderer { |
| 29 | |
| 30 | /////////////////////////////////////////////////////////////////////////////// |
| 31 | // Constructors/destructor |
| 32 | /////////////////////////////////////////////////////////////////////////////// |
| 33 | |
Romain Guy | 8550c4c | 2010-10-08 15:49:53 -0700 | [diff] [blame] | 34 | LayerCache::LayerCache(): mSize(0), mMaxSize(MB(DEFAULT_LAYER_CACHE_SIZE)) { |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 35 | char property[PROPERTY_VALUE_MAX]; |
| 36 | if (property_get(PROPERTY_LAYER_CACHE_SIZE, property, NULL) > 0) { |
Romain Guy | c9855a5 | 2011-01-21 21:14:15 -0800 | [diff] [blame] | 37 | INIT_LOGD(" Setting layer cache size to %sMB", property); |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 38 | setMaxSize(MB(atof(property))); |
| 39 | } else { |
Romain Guy | c9855a5 | 2011-01-21 21:14:15 -0800 | [diff] [blame] | 40 | INIT_LOGD(" Using default layer cache size of %.2fMB", DEFAULT_LAYER_CACHE_SIZE); |
Romain Guy | fb8b763 | 2010-08-23 21:05:08 -0700 | [diff] [blame] | 41 | } |
| 42 | } |
| 43 | |
Romain Guy | dda5702 | 2010-07-06 11:39:32 -0700 | [diff] [blame] | 44 | LayerCache::~LayerCache() { |
Romain Guy | 5f0c6a4 | 2010-07-07 13:06:26 -0700 | [diff] [blame] | 45 | clear(); |
Romain Guy | dda5702 | 2010-07-06 11:39:32 -0700 | [diff] [blame] | 46 | } |
| 47 | |
| 48 | /////////////////////////////////////////////////////////////////////////////// |
| 49 | // Size management |
| 50 | /////////////////////////////////////////////////////////////////////////////// |
| 51 | |
| 52 | uint32_t LayerCache::getSize() { |
| 53 | return mSize; |
| 54 | } |
| 55 | |
| 56 | uint32_t LayerCache::getMaxSize() { |
| 57 | return mMaxSize; |
| 58 | } |
| 59 | |
| 60 | void LayerCache::setMaxSize(uint32_t maxSize) { |
Romain Guy | 8550c4c | 2010-10-08 15:49:53 -0700 | [diff] [blame] | 61 | clear(); |
Romain Guy | dda5702 | 2010-07-06 11:39:32 -0700 | [diff] [blame] | 62 | mMaxSize = maxSize; |
Romain Guy | dda5702 | 2010-07-06 11:39:32 -0700 | [diff] [blame] | 63 | } |
| 64 | |
| 65 | /////////////////////////////////////////////////////////////////////////////// |
| 66 | // Caching |
| 67 | /////////////////////////////////////////////////////////////////////////////// |
| 68 | |
| 69 | void LayerCache::deleteLayer(Layer* layer) { |
| 70 | if (layer) { |
Romain Guy | 8550c4c | 2010-10-08 15:49:53 -0700 | [diff] [blame] | 71 | mSize -= layer->width * layer->height * 4; |
Romain Guy | dda5702 | 2010-07-06 11:39:32 -0700 | [diff] [blame] | 72 | glDeleteTextures(1, &layer->texture); |
| 73 | delete layer; |
| 74 | } |
| 75 | } |
| 76 | |
| 77 | void LayerCache::clear() { |
Romain Guy | 8550c4c | 2010-10-08 15:49:53 -0700 | [diff] [blame] | 78 | size_t count = mCache.size(); |
| 79 | for (size_t i = 0; i < count; i++) { |
| 80 | deleteLayer(mCache.itemAt(i).mLayer); |
| 81 | } |
Romain Guy | dda5702 | 2010-07-06 11:39:32 -0700 | [diff] [blame] | 82 | mCache.clear(); |
Romain Guy | dda5702 | 2010-07-06 11:39:32 -0700 | [diff] [blame] | 83 | } |
| 84 | |
Romain Guy | 8550c4c | 2010-10-08 15:49:53 -0700 | [diff] [blame] | 85 | Layer* LayerCache::get(const uint32_t width, const uint32_t height) { |
| 86 | Layer* layer = NULL; |
Romain Guy | f18fd99 | 2010-07-08 11:45:51 -0700 | [diff] [blame] | 87 | |
Romain Guy | 8550c4c | 2010-10-08 15:49:53 -0700 | [diff] [blame] | 88 | LayerEntry entry(width, height); |
| 89 | ssize_t index = mCache.indexOf(entry); |
| 90 | |
| 91 | if (index >= 0) { |
| 92 | entry = mCache.itemAt(index); |
| 93 | mCache.removeAt(index); |
| 94 | |
| 95 | layer = entry.mLayer; |
| 96 | mSize -= layer->width * layer->height * 4; |
| 97 | |
| 98 | LAYER_LOGD("Reusing layer %dx%d", layer->width, layer->height); |
Romain Guy | f18fd99 | 2010-07-08 11:45:51 -0700 | [diff] [blame] | 99 | } else { |
Romain Guy | 8550c4c | 2010-10-08 15:49:53 -0700 | [diff] [blame] | 100 | LAYER_LOGD("Creating new layer %dx%d", entry.mWidth, entry.mHeight); |
Romain Guy | f18fd99 | 2010-07-08 11:45:51 -0700 | [diff] [blame] | 101 | |
Romain Guy | 8550c4c | 2010-10-08 15:49:53 -0700 | [diff] [blame] | 102 | layer = new Layer(entry.mWidth, entry.mHeight); |
Romain Guy | f18fd99 | 2010-07-08 11:45:51 -0700 | [diff] [blame] | 103 | layer->blend = true; |
Romain Guy | 38c85b9 | 2010-09-22 22:48:20 -0700 | [diff] [blame] | 104 | layer->empty = true; |
Romain Guy | eb99356 | 2010-10-05 18:14:38 -0700 | [diff] [blame] | 105 | layer->fbo = 0; |
Romain Guy | 171c592 | 2011-01-06 10:04:23 -0800 | [diff] [blame] | 106 | layer->colorFilter = NULL; |
Romain Guy | f18fd99 | 2010-07-08 11:45:51 -0700 | [diff] [blame] | 107 | |
Romain Guy | f18fd99 | 2010-07-08 11:45:51 -0700 | [diff] [blame] | 108 | glGenTextures(1, &layer->texture); |
| 109 | glBindTexture(GL_TEXTURE_2D, layer->texture); |
| 110 | |
Romain Guy | 0bb5667 | 2010-10-01 00:25:02 -0700 | [diff] [blame] | 111 | glPixelStorei(GL_UNPACK_ALIGNMENT, 4); |
| 112 | |
Romain Guy | 38c85b9 | 2010-09-22 22:48:20 -0700 | [diff] [blame] | 113 | glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); |
| 114 | glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); |
Romain Guy | f18fd99 | 2010-07-08 11:45:51 -0700 | [diff] [blame] | 115 | |
| 116 | glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE); |
| 117 | glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE); |
Romain Guy | eb99356 | 2010-10-05 18:14:38 -0700 | [diff] [blame] | 118 | |
| 119 | #if DEBUG_LAYERS |
Romain Guy | 8550c4c | 2010-10-08 15:49:53 -0700 | [diff] [blame] | 120 | size_t size = mCache.size(); |
| 121 | for (size_t i = 0; i < size; i++) { |
| 122 | const LayerEntry& entry = mCache.itemAt(i); |
| 123 | LAYER_LOGD(" Layer size %dx%d", entry.mWidth, entry.mHeight); |
Romain Guy | eb99356 | 2010-10-05 18:14:38 -0700 | [diff] [blame] | 124 | } |
| 125 | #endif |
Romain Guy | dda5702 | 2010-07-06 11:39:32 -0700 | [diff] [blame] | 126 | } |
Romain Guy | f18fd99 | 2010-07-08 11:45:51 -0700 | [diff] [blame] | 127 | |
Romain Guy | dda5702 | 2010-07-06 11:39:32 -0700 | [diff] [blame] | 128 | return layer; |
| 129 | } |
| 130 | |
Romain Guy | 09b7c91 | 2011-02-02 20:28:09 -0800 | [diff] [blame] | 131 | bool LayerCache::resize(Layer* layer, const uint32_t width, const uint32_t height) { |
| 132 | // TODO: We should be smarter and see if we have a texture of the appropriate |
| 133 | // size already in the cache, and reuse it instead of creating a new one |
| 134 | |
| 135 | LayerEntry entry(width, height); |
| 136 | if (entry.mWidth <= layer->width && entry.mHeight <= layer->height) { |
| 137 | return true; |
| 138 | } |
| 139 | |
| 140 | glActiveTexture(GL_TEXTURE0); |
| 141 | glBindTexture(GL_TEXTURE_2D, layer->texture); |
| 142 | |
| 143 | glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, entry.mWidth, entry.mHeight, 0, |
| 144 | GL_RGBA, GL_UNSIGNED_BYTE, NULL); |
| 145 | |
| 146 | if (glGetError() != GL_NO_ERROR) { |
| 147 | return false; |
| 148 | } |
| 149 | |
| 150 | layer->width = entry.mWidth; |
| 151 | layer->height = entry.mHeight; |
| 152 | |
| 153 | return true; |
| 154 | } |
| 155 | |
Romain Guy | 8550c4c | 2010-10-08 15:49:53 -0700 | [diff] [blame] | 156 | bool LayerCache::put(Layer* layer) { |
Romain Guy | aa6c24c | 2011-04-28 18:40:04 -0700 | [diff] [blame^] | 157 | if (!layer->isCacheable) return false; |
| 158 | |
Romain Guy | 8550c4c | 2010-10-08 15:49:53 -0700 | [diff] [blame] | 159 | const uint32_t size = layer->width * layer->height * 4; |
Romain Guy | dda5702 | 2010-07-06 11:39:32 -0700 | [diff] [blame] | 160 | // Don't even try to cache a layer that's bigger than the cache |
| 161 | if (size < mMaxSize) { |
Romain Guy | 8550c4c | 2010-10-08 15:49:53 -0700 | [diff] [blame] | 162 | // TODO: Use an LRU |
Romain Guy | dda5702 | 2010-07-06 11:39:32 -0700 | [diff] [blame] | 163 | while (mSize + size > mMaxSize) { |
Romain Guy | e910805 | 2010-10-12 18:15:42 -0700 | [diff] [blame] | 164 | size_t position = 0; |
| 165 | #if LAYER_REMOVE_BIGGEST |
| 166 | position = mCache.size() - 1; |
| 167 | #endif |
| 168 | Layer* victim = mCache.itemAt(position).mLayer; |
| 169 | deleteLayer(victim); |
| 170 | mCache.removeAt(position); |
Romain Guy | 8550c4c | 2010-10-08 15:49:53 -0700 | [diff] [blame] | 171 | |
Romain Guy | e910805 | 2010-10-12 18:15:42 -0700 | [diff] [blame] | 172 | LAYER_LOGD(" Deleting layer %.2fx%.2f", victim->layer.getWidth(), |
| 173 | victim->layer.getHeight()); |
Romain Guy | dda5702 | 2010-07-06 11:39:32 -0700 | [diff] [blame] | 174 | } |
| 175 | |
Romain Guy | 8550c4c | 2010-10-08 15:49:53 -0700 | [diff] [blame] | 176 | LayerEntry entry(layer); |
| 177 | |
| 178 | mCache.add(entry); |
Romain Guy | dda5702 | 2010-07-06 11:39:32 -0700 | [diff] [blame] | 179 | mSize += size; |
| 180 | |
| 181 | return true; |
| 182 | } |
| 183 | return false; |
| 184 | } |
| 185 | |
| 186 | }; // namespace uirenderer |
| 187 | }; // namespace android |