blob: 1cb593267ae492dc41cd8a8be1ce4d18369cbde0 [file] [log] [blame]
Romain Guyce0537b2010-06-29 21:05:21 -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
Romain Guy121e2242010-07-01 18:26:52 -070017#define LOG_TAG "OpenGLRenderer"
18
Romain Guyce0537b2010-06-29 21:05:21 -070019#include <GLES2/gl2.h>
20
21#include "TextureCache.h"
22
23namespace android {
24namespace uirenderer {
25
Romain Guy121e2242010-07-01 18:26:52 -070026///////////////////////////////////////////////////////////////////////////////
27// Constructors/destructor
28///////////////////////////////////////////////////////////////////////////////
29
Romain Guy7d139ba2010-07-02 11:20:34 -070030TextureCache::TextureCache(uint32_t maxByteSize):
Romain Guy6c818932010-07-07 15:15:32 -070031 mCache(GenerationCache<SkBitmap*, Texture*>::kUnlimitedCapacity),
Romain Guy121e2242010-07-01 18:26:52 -070032 mSize(0), mMaxSize(maxByteSize) {
Romain Guyce0537b2010-06-29 21:05:21 -070033 mCache.setOnEntryRemovedListener(this);
Romain Guy9cccc2b2010-08-07 23:46:15 -070034
35 GLint maxTextureSize;
36 glGetIntegerv(GL_MAX_TEXTURE_SIZE, &maxTextureSize);
37 LOGD("Maximum texture dimension is %d pixels", maxTextureSize);
38 mMaxTextureSize = maxTextureSize;
Romain Guyce0537b2010-06-29 21:05:21 -070039}
40
41TextureCache::~TextureCache() {
42 mCache.clear();
43}
44
Romain Guy121e2242010-07-01 18:26:52 -070045///////////////////////////////////////////////////////////////////////////////
46// Size management
47///////////////////////////////////////////////////////////////////////////////
48
Romain Guy7d139ba2010-07-02 11:20:34 -070049uint32_t TextureCache::getSize() {
Romain Guy121e2242010-07-01 18:26:52 -070050 return mSize;
51}
52
Romain Guy7d139ba2010-07-02 11:20:34 -070053uint32_t TextureCache::getMaxSize() {
Romain Guy121e2242010-07-01 18:26:52 -070054 return mMaxSize;
55}
56
Romain Guy7d139ba2010-07-02 11:20:34 -070057void TextureCache::setMaxSize(uint32_t maxSize) {
Romain Guy121e2242010-07-01 18:26:52 -070058 mMaxSize = maxSize;
59 while (mSize > mMaxSize) {
60 mCache.removeOldest();
Romain Guyce0537b2010-06-29 21:05:21 -070061 }
62}
63
Romain Guy121e2242010-07-01 18:26:52 -070064///////////////////////////////////////////////////////////////////////////////
65// Callbacks
66///////////////////////////////////////////////////////////////////////////////
67
Romain Guydda57022010-07-06 11:39:32 -070068void TextureCache::operator()(SkBitmap*& bitmap, Texture*& texture) {
Romain Guy121e2242010-07-01 18:26:52 -070069 if (bitmap) {
Romain Guy7d139ba2010-07-02 11:20:34 -070070 const uint32_t size = bitmap->rowBytes() * bitmap->height();
Romain Guy121e2242010-07-01 18:26:52 -070071 mSize -= size;
72 }
73
74 if (texture) {
75 glDeleteTextures(1, &texture->id);
76 delete texture;
77 }
78}
79
80///////////////////////////////////////////////////////////////////////////////
81// Caching
82///////////////////////////////////////////////////////////////////////////////
83
Romain Guyce0537b2010-06-29 21:05:21 -070084Texture* TextureCache::get(SkBitmap* bitmap) {
85 Texture* texture = mCache.get(bitmap);
86 if (!texture) {
Romain Guy9cccc2b2010-08-07 23:46:15 -070087 if (bitmap->width() > mMaxTextureSize || bitmap->height() > mMaxTextureSize) {
88 LOGW("Bitmap too large to be uploaded into a texture");
89 return NULL;
90 }
91
Romain Guy7d139ba2010-07-02 11:20:34 -070092 const uint32_t size = bitmap->rowBytes() * bitmap->height();
Romain Guy121e2242010-07-01 18:26:52 -070093 // Don't even try to cache a bitmap that's bigger than the cache
94 if (size < mMaxSize) {
95 while (mSize + size > mMaxSize) {
96 mCache.removeOldest();
97 }
98 }
99
Romain Guy364703c2010-06-30 15:51:03 -0700100 texture = new Texture;
Romain Guyc1396e92010-06-30 17:56:19 -0700101 generateTexture(bitmap, texture, false);
Romain Guy121e2242010-07-01 18:26:52 -0700102
103 if (size < mMaxSize) {
104 mSize += size;
105 mCache.put(bitmap, texture);
Romain Guy22158e12010-08-06 11:18:34 -0700106 } else {
107 texture->cleanup = true;
Romain Guy121e2242010-07-01 18:26:52 -0700108 }
Romain Guyfe880942010-06-30 16:05:32 -0700109 } else if (bitmap->getGenerationID() != texture->generation) {
110 generateTexture(bitmap, texture, true);
Romain Guyce0537b2010-06-29 21:05:21 -0700111 }
Romain Guy22158e12010-08-06 11:18:34 -0700112
Romain Guyce0537b2010-06-29 21:05:21 -0700113 return texture;
114}
115
Romain Guy121e2242010-07-01 18:26:52 -0700116void TextureCache::remove(SkBitmap* bitmap) {
117 mCache.remove(bitmap);
Romain Guyce0537b2010-06-29 21:05:21 -0700118}
119
120void TextureCache::clear() {
121 mCache.clear();
122}
123
Romain Guyfe880942010-06-30 16:05:32 -0700124void TextureCache::generateTexture(SkBitmap* bitmap, Texture* texture, bool regenerate) {
Romain Guyc1396e92010-06-30 17:56:19 -0700125 SkAutoLockPixels alp(*bitmap);
126 if (!bitmap->readyToDraw()) {
127 LOGE("Cannot generate texture from bitmap");
128 return;
129 }
130
Romain Guyfe880942010-06-30 16:05:32 -0700131 if (!regenerate) {
Romain Guyc1396e92010-06-30 17:56:19 -0700132 texture->generation = bitmap->getGenerationID();
Romain Guyfe880942010-06-30 16:05:32 -0700133 texture->width = bitmap->width();
134 texture->height = bitmap->height();
Romain Guyce0537b2010-06-29 21:05:21 -0700135
Romain Guyfe880942010-06-30 16:05:32 -0700136 glGenTextures(1, &texture->id);
137 }
138
Romain Guyce0537b2010-06-29 21:05:21 -0700139 glBindTexture(GL_TEXTURE_2D, texture->id);
Romain Guyc1396e92010-06-30 17:56:19 -0700140 glPixelStorei(GL_UNPACK_ALIGNMENT, bitmap->bytesPerPixel());
141
142 switch (bitmap->getConfig()) {
Romain Guybd0e6aa2010-07-22 18:50:12 -0700143 case SkBitmap::kA8_Config:
144 texture->blend = true;
145 glTexImage2D(GL_TEXTURE_2D, 0, GL_ALPHA, bitmap->rowBytesAsPixels(), texture->height, 0,
146 GL_ALPHA, GL_UNSIGNED_BYTE, bitmap->getPixels());
147 break;
Romain Guyc1396e92010-06-30 17:56:19 -0700148 case SkBitmap::kRGB_565_Config:
149 texture->blend = false;
150 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, bitmap->rowBytesAsPixels(), texture->height, 0,
151 GL_RGB, GL_UNSIGNED_SHORT_5_6_5, bitmap->getPixels());
152 break;
153 case SkBitmap::kARGB_8888_Config:
Romain Guy594f4062010-07-13 17:41:31 -0700154 texture->blend = !bitmap->isOpaque();
Romain Guyc1396e92010-06-30 17:56:19 -0700155 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, bitmap->rowBytesAsPixels(), texture->height, 0,
156 GL_RGBA, GL_UNSIGNED_BYTE, bitmap->getPixels());
157 break;
158 default:
159 break;
160 }
Romain Guyce0537b2010-06-29 21:05:21 -0700161
162 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
163 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
Romain Guy8ba548f2010-06-30 19:21:21 -0700164
Romain Guyce0537b2010-06-29 21:05:21 -0700165 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
166 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
Romain Guyce0537b2010-06-29 21:05:21 -0700167}
168
169}; // namespace uirenderer
170}; // namespace android