blob: 10e4f9e5df53879dd6ceb72cc8d02eba79fbbac8 [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
30TextureCache::TextureCache(unsigned int maxByteSize):
31 mCache(GenerationCache<SkBitmap, Texture>::kUnlimitedCapacity),
32 mSize(0), mMaxSize(maxByteSize) {
Romain Guyce0537b2010-06-29 21:05:21 -070033 mCache.setOnEntryRemovedListener(this);
34}
35
36TextureCache::~TextureCache() {
37 mCache.clear();
38}
39
Romain Guy121e2242010-07-01 18:26:52 -070040///////////////////////////////////////////////////////////////////////////////
41// Size management
42///////////////////////////////////////////////////////////////////////////////
43
44unsigned int TextureCache::getSize() {
45 return mSize;
46}
47
48unsigned int TextureCache::getMaxSize() {
49 return mMaxSize;
50}
51
52void TextureCache::setMaxSize(unsigned int maxSize) {
53 mMaxSize = maxSize;
54 while (mSize > mMaxSize) {
55 mCache.removeOldest();
Romain Guyce0537b2010-06-29 21:05:21 -070056 }
57}
58
Romain Guy121e2242010-07-01 18:26:52 -070059///////////////////////////////////////////////////////////////////////////////
60// Callbacks
61///////////////////////////////////////////////////////////////////////////////
62
63void 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 Guyce0537b2010-06-29 21:05:21 -070079Texture* TextureCache::get(SkBitmap* bitmap) {
80 Texture* texture = mCache.get(bitmap);
81 if (!texture) {
Romain Guy121e2242010-07-01 18:26:52 -070082 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 Guy364703c2010-06-30 15:51:03 -070090 texture = new Texture;
Romain Guyc1396e92010-06-30 17:56:19 -070091 generateTexture(bitmap, texture, false);
Romain Guy121e2242010-07-01 18:26:52 -070092
93 if (size < mMaxSize) {
94 mSize += size;
95 mCache.put(bitmap, texture);
96 }
Romain Guyfe880942010-06-30 16:05:32 -070097 } else if (bitmap->getGenerationID() != texture->generation) {
98 generateTexture(bitmap, texture, true);
Romain Guyce0537b2010-06-29 21:05:21 -070099 }
100 return texture;
101}
102
Romain Guy121e2242010-07-01 18:26:52 -0700103void TextureCache::remove(SkBitmap* bitmap) {
104 mCache.remove(bitmap);
Romain Guyce0537b2010-06-29 21:05:21 -0700105}
106
107void TextureCache::clear() {
108 mCache.clear();
109}
110
Romain Guyfe880942010-06-30 16:05:32 -0700111void TextureCache::generateTexture(SkBitmap* bitmap, Texture* texture, bool regenerate) {
Romain Guyc1396e92010-06-30 17:56:19 -0700112 SkAutoLockPixels alp(*bitmap);
113 if (!bitmap->readyToDraw()) {
114 LOGE("Cannot generate texture from bitmap");
115 return;
116 }
117
Romain Guyfe880942010-06-30 16:05:32 -0700118 if (!regenerate) {
Romain Guyc1396e92010-06-30 17:56:19 -0700119 texture->generation = bitmap->getGenerationID();
Romain Guyfe880942010-06-30 16:05:32 -0700120 texture->width = bitmap->width();
121 texture->height = bitmap->height();
Romain Guyce0537b2010-06-29 21:05:21 -0700122
Romain Guyfe880942010-06-30 16:05:32 -0700123 glGenTextures(1, &texture->id);
124 }
125
Romain Guyce0537b2010-06-29 21:05:21 -0700126 glBindTexture(GL_TEXTURE_2D, texture->id);
Romain Guyc1396e92010-06-30 17:56:19 -0700127 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 Guyce0537b2010-06-29 21:05:21 -0700143
144 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
145 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
Romain Guy8ba548f2010-06-30 19:21:21 -0700146
Romain Guyce0537b2010-06-29 21:05:21 -0700147 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 Guyfe880942010-06-30 16:05:32 -0700150 glBindTexture(GL_TEXTURE_2D, 0);
Romain Guyce0537b2010-06-29 21:05:21 -0700151}
152
153}; // namespace uirenderer
154}; // namespace android