blob: 7e8c7fdb8e03475bd20b8e47f8ba0ac1a24200a2 [file] [log] [blame]
Romain Guy6c319ca2011-01-11 14:29:25 -08001/*
2 * Copyright (C) 2011 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
Romain Guy3a3133d2011-02-01 22:59:58 -080019#include <ui/Rect.h>
20
Romain Guy09b7c912011-02-02 20:28:09 -080021#include "LayerCache.h"
Romain Guy6c319ca2011-01-11 14:29:25 -080022#include "LayerRenderer.h"
Romain Guyaa6c24c2011-04-28 18:40:04 -070023#include "Matrix.h"
Romain Guy1fc883b2011-01-12 14:30:59 -080024#include "Properties.h"
Romain Guy3a3133d2011-02-01 22:59:58 -080025#include "Rect.h"
Romain Guy6c319ca2011-01-11 14:29:25 -080026
27namespace android {
28namespace uirenderer {
29
30///////////////////////////////////////////////////////////////////////////////
31// Rendering
32///////////////////////////////////////////////////////////////////////////////
33
Romain Guy7d7b5492011-01-24 16:33:45 -080034void LayerRenderer::prepareDirty(float left, float top, float right, float bottom, bool opaque) {
Romain Guy9ace8f52011-07-07 20:50:11 -070035 LAYER_RENDERER_LOGD("Rendering into layer, fbo = %d", mLayer->getFbo());
Romain Guy1fc883b2011-01-12 14:30:59 -080036
Romain Guy9ace8f52011-07-07 20:50:11 -070037 glBindFramebuffer(GL_FRAMEBUFFER, mLayer->getFbo());
Romain Guy62687ec2011-02-02 15:44:19 -080038
Romain Guy09b7c912011-02-02 20:28:09 -080039 const float width = mLayer->layer.getWidth();
40 const float height = mLayer->layer.getHeight();
41
Romain Guyc88e3572011-01-22 00:32:12 -080042#if RENDER_LAYERS_AS_REGIONS
Romain Guy3a3133d2011-02-01 22:59:58 -080043 Rect dirty(left, top, right, bottom);
44 if (dirty.isEmpty() || (dirty.left <= 0 && dirty.top <= 0 &&
Romain Guy09b7c912011-02-02 20:28:09 -080045 dirty.right >= width && dirty.bottom >= height)) {
Romain Guy3a3133d2011-02-01 22:59:58 -080046 mLayer->region.clear();
Romain Guy09b7c912011-02-02 20:28:09 -080047 dirty.set(0.0f, 0.0f, width, height);
Romain Guy3a3133d2011-02-01 22:59:58 -080048 } else {
Romain Guy09b7c912011-02-02 20:28:09 -080049 dirty.intersect(0.0f, 0.0f, width, height);
Romain Guy3a3133d2011-02-01 22:59:58 -080050 android::Rect r(dirty.left, dirty.top, dirty.right, dirty.bottom);
51 mLayer->region.subtractSelf(r);
52 }
Romain Guyc88e3572011-01-22 00:32:12 -080053
Romain Guy3a3133d2011-02-01 22:59:58 -080054 OpenGLRenderer::prepareDirty(dirty.left, dirty.top, dirty.right, dirty.bottom, opaque);
55#else
Romain Guy09b7c912011-02-02 20:28:09 -080056 OpenGLRenderer::prepareDirty(0.0f, 0.0f, width, height, opaque);
Romain Guy3a3133d2011-02-01 22:59:58 -080057#endif
Romain Guy6c319ca2011-01-11 14:29:25 -080058}
59
60void LayerRenderer::finish() {
61 OpenGLRenderer::finish();
Romain Guy1fc883b2011-01-12 14:30:59 -080062
Romain Guyf219da52011-01-16 12:54:25 -080063 generateMesh();
64
Romain Guy9ace8f52011-07-07 20:50:11 -070065 LAYER_RENDERER_LOGD("Finished rendering into layer, fbo = %d", mLayer->getFbo());
Romain Guy42f3a4b2011-01-19 13:42:26 -080066
67 // No need to unbind our FBO, this will be taken care of by the caller
68 // who will invoke OpenGLRenderer::resume()
69}
70
71GLint LayerRenderer::getTargetFbo() {
Romain Guy9ace8f52011-07-07 20:50:11 -070072 return mLayer->getFbo();
Romain Guy6c319ca2011-01-11 14:29:25 -080073}
74
75///////////////////////////////////////////////////////////////////////////////
Romain Guyf219da52011-01-16 12:54:25 -080076// Dirty region tracking
77///////////////////////////////////////////////////////////////////////////////
78
79bool LayerRenderer::hasLayer() {
80 return true;
81}
82
83Region* LayerRenderer::getRegion() {
84#if RENDER_LAYERS_AS_REGIONS
85 if (getSnapshot()->flags & Snapshot::kFlagFboTarget) {
86 return OpenGLRenderer::getRegion();
87 }
88 return &mLayer->region;
89#else
90 return OpenGLRenderer::getRegion();
91#endif
92}
93
94void LayerRenderer::generateMesh() {
95#if RENDER_LAYERS_AS_REGIONS
96 if (mLayer->region.isRect() || mLayer->region.isEmpty()) {
97 if (mLayer->mesh) {
98 delete mLayer->mesh;
99 delete mLayer->meshIndices;
100
101 mLayer->mesh = NULL;
102 mLayer->meshIndices = NULL;
103 mLayer->meshElementCount = 0;
104 }
Romain Guy40667672011-03-18 14:34:03 -0700105
Romain Guy9fc27812011-04-27 14:21:41 -0700106 mLayer->setRegionAsRect();
Romain Guyf219da52011-01-16 12:54:25 -0800107 return;
108 }
109
110 size_t count;
111 const android::Rect* rects = mLayer->region.getArray(&count);
112
113 GLsizei elementCount = count * 6;
114
115 if (mLayer->mesh && mLayer->meshElementCount < elementCount) {
116 delete mLayer->mesh;
117 delete mLayer->meshIndices;
118
119 mLayer->mesh = NULL;
120 mLayer->meshIndices = NULL;
121 }
122
Romain Guy4f09f542011-01-26 22:41:43 -0800123 bool rebuildIndices = false;
Romain Guyf219da52011-01-16 12:54:25 -0800124 if (!mLayer->mesh) {
125 mLayer->mesh = new TextureVertex[count * 4];
126 mLayer->meshIndices = new uint16_t[elementCount];
Romain Guy4f09f542011-01-26 22:41:43 -0800127 rebuildIndices = true;
Romain Guyf219da52011-01-16 12:54:25 -0800128 }
Romain Guy4f09f542011-01-26 22:41:43 -0800129 mLayer->meshElementCount = elementCount;
Romain Guyf219da52011-01-16 12:54:25 -0800130
Romain Guy9ace8f52011-07-07 20:50:11 -0700131 const float texX = 1.0f / float(mLayer->getWidth());
132 const float texY = 1.0f / float(mLayer->getHeight());
Romain Guyf219da52011-01-16 12:54:25 -0800133 const float height = mLayer->layer.getHeight();
134
135 TextureVertex* mesh = mLayer->mesh;
136 uint16_t* indices = mLayer->meshIndices;
137
138 for (size_t i = 0; i < count; i++) {
139 const android::Rect* r = &rects[i];
140
141 const float u1 = r->left * texX;
142 const float v1 = (height - r->top) * texY;
143 const float u2 = r->right * texX;
144 const float v2 = (height - r->bottom) * texY;
145
146 TextureVertex::set(mesh++, r->left, r->top, u1, v1);
147 TextureVertex::set(mesh++, r->right, r->top, u2, v1);
148 TextureVertex::set(mesh++, r->left, r->bottom, u1, v2);
149 TextureVertex::set(mesh++, r->right, r->bottom, u2, v2);
150
Romain Guy4f09f542011-01-26 22:41:43 -0800151 if (rebuildIndices) {
152 uint16_t quad = i * 4;
153 int index = i * 6;
154 indices[index ] = quad; // top-left
155 indices[index + 1] = quad + 1; // top-right
156 indices[index + 2] = quad + 2; // bottom-left
157 indices[index + 3] = quad + 2; // bottom-left
158 indices[index + 4] = quad + 1; // top-right
159 indices[index + 5] = quad + 3; // bottom-right
160 }
Romain Guyf219da52011-01-16 12:54:25 -0800161 }
162#endif
163}
164
165///////////////////////////////////////////////////////////////////////////////
166// Layers management
Romain Guy6c319ca2011-01-11 14:29:25 -0800167///////////////////////////////////////////////////////////////////////////////
168
Romain Guyada830f2011-01-13 12:13:20 -0800169Layer* LayerRenderer::createLayer(uint32_t width, uint32_t height, bool isOpaque) {
Romain Guyeea60692011-07-26 20:35:55 -0700170 LAYER_RENDERER_LOGD("Requesting new render layer %dx%d", width, height);
Romain Guy1fc883b2011-01-12 14:30:59 -0800171
Romain Guy09b7c912011-02-02 20:28:09 -0800172 GLuint fbo = Caches::getInstance().fboCache.get();
173 if (!fbo) {
174 LOGW("Could not obtain an FBO");
175 return NULL;
176 }
177
178 glActiveTexture(GL_TEXTURE0);
179 Layer* layer = Caches::getInstance().layerCache.get(width, height);
180 if (!layer) {
181 LOGW("Could not obtain a layer");
182 return NULL;
183 }
184
Romain Guy9ace8f52011-07-07 20:50:11 -0700185 layer->setFbo(fbo);
Romain Guy09b7c912011-02-02 20:28:09 -0800186 layer->layer.set(0.0f, 0.0f, width, height);
Romain Guy9ace8f52011-07-07 20:50:11 -0700187 layer->texCoords.set(0.0f, height / float(layer->getHeight()),
188 width / float(layer->getWidth()), 0.0f);
189 layer->setAlpha(255, SkXfermode::kSrcOver_Mode);
190 layer->setBlend(!isOpaque);
191 layer->setColorFilter(NULL);
Romain Guy09b7c912011-02-02 20:28:09 -0800192 layer->region.clear();
Romain Guyada830f2011-01-13 12:13:20 -0800193
Romain Guy6c319ca2011-01-11 14:29:25 -0800194 GLuint previousFbo;
195 glGetIntegerv(GL_FRAMEBUFFER_BINDING, (GLint*) &previousFbo);
196
Romain Guy9ace8f52011-07-07 20:50:11 -0700197 glBindFramebuffer(GL_FRAMEBUFFER, layer->getFbo());
198 layer->bindTexture();
Romain Guy6c319ca2011-01-11 14:29:25 -0800199
Romain Guy09b7c912011-02-02 20:28:09 -0800200 // Initialize the texture if needed
Romain Guy9ace8f52011-07-07 20:50:11 -0700201 if (layer->isEmpty()) {
202 layer->setEmpty(false);
203 layer->allocateTexture(GL_RGBA, GL_UNSIGNED_BYTE);
Romain Guy6c319ca2011-01-11 14:29:25 -0800204
Romain Guy09b7c912011-02-02 20:28:09 -0800205 if (glGetError() != GL_NO_ERROR) {
206 LOGD("Could not allocate texture");
Romain Guy9ace8f52011-07-07 20:50:11 -0700207
Romain Guy09b7c912011-02-02 20:28:09 -0800208 glBindFramebuffer(GL_FRAMEBUFFER, previousFbo);
Romain Guy09b7c912011-02-02 20:28:09 -0800209 Caches::getInstance().fboCache.put(fbo);
Romain Guy9ace8f52011-07-07 20:50:11 -0700210
211 layer->deleteTexture();
Romain Guy09b7c912011-02-02 20:28:09 -0800212 delete layer;
Romain Guy9ace8f52011-07-07 20:50:11 -0700213
Romain Guy09b7c912011-02-02 20:28:09 -0800214 return NULL;
215 }
Romain Guy6c319ca2011-01-11 14:29:25 -0800216 }
217
218 glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D,
Romain Guy9ace8f52011-07-07 20:50:11 -0700219 layer->getTexture(), 0);
Romain Guy6c319ca2011-01-11 14:29:25 -0800220
Romain Guy40a787f2011-03-02 15:15:42 -0800221 glDisable(GL_SCISSOR_TEST);
222 glClearColor(0.0f, 0.0f, 0.0f, 0.0f);
223 glClear(GL_COLOR_BUFFER_BIT);
224 glEnable(GL_SCISSOR_TEST);
225
Romain Guy6c319ca2011-01-11 14:29:25 -0800226 glBindFramebuffer(GL_FRAMEBUFFER, previousFbo);
227
Romain Guyada830f2011-01-13 12:13:20 -0800228 return layer;
Romain Guy6c319ca2011-01-11 14:29:25 -0800229}
230
Romain Guyada830f2011-01-13 12:13:20 -0800231bool LayerRenderer::resizeLayer(Layer* layer, uint32_t width, uint32_t height) {
232 if (layer) {
Romain Guy9ace8f52011-07-07 20:50:11 -0700233 LAYER_RENDERER_LOGD("Resizing layer fbo = %d to %dx%d", layer->getFbo(), width, height);
Romain Guy1fc883b2011-01-12 14:30:59 -0800234
Romain Guy09b7c912011-02-02 20:28:09 -0800235 if (Caches::getInstance().layerCache.resize(layer, width, height)) {
236 layer->layer.set(0.0f, 0.0f, width, height);
Romain Guy9ace8f52011-07-07 20:50:11 -0700237 layer->texCoords.set(0.0f, height / float(layer->getHeight()),
238 width / float(layer->getWidth()), 0.0f);
Romain Guy09b7c912011-02-02 20:28:09 -0800239 } else {
Romain Guy9ace8f52011-07-07 20:50:11 -0700240 layer->deleteTexture();
Romain Guy09b7c912011-02-02 20:28:09 -0800241 delete layer;
Romain Guyada830f2011-01-13 12:13:20 -0800242 return false;
243 }
Romain Guy6c319ca2011-01-11 14:29:25 -0800244 }
Romain Guy09b7c912011-02-02 20:28:09 -0800245
Romain Guyada830f2011-01-13 12:13:20 -0800246 return true;
Romain Guy6c319ca2011-01-11 14:29:25 -0800247}
248
Romain Guy4a5a7152011-06-24 17:53:53 -0700249Layer* LayerRenderer::createTextureLayer(bool isOpaque) {
250 LAYER_RENDERER_LOGD("Creating new texture layer");
251
252 Layer* layer = new Layer(0, 0);
Romain Guy9ace8f52011-07-07 20:50:11 -0700253 layer->setCacheable(false);
254 layer->setTextureLayer(true);
255 layer->setBlend(!isOpaque);
256 layer->setEmpty(true);
257 layer->setFbo(0);
258 layer->setAlpha(255, SkXfermode::kSrcOver_Mode);
Romain Guy4a5a7152011-06-24 17:53:53 -0700259 layer->layer.set(0.0f, 0.0f, 0.0f, 0.0f);
260 layer->texCoords.set(0.0f, 1.0f, 0.0f, 1.0f);
Romain Guy4a5a7152011-06-24 17:53:53 -0700261 layer->region.clear();
Romain Guy9ace8f52011-07-07 20:50:11 -0700262 layer->setRenderTarget(GL_NONE); // see ::updateTextureLayer()
Romain Guy4a5a7152011-06-24 17:53:53 -0700263
264 glActiveTexture(GL_TEXTURE0);
Romain Guy9ace8f52011-07-07 20:50:11 -0700265 layer->generateTexture();
Romain Guy4a5a7152011-06-24 17:53:53 -0700266
267 return layer;
268}
269
Romain Guyaa6c24c2011-04-28 18:40:04 -0700270void LayerRenderer::updateTextureLayer(Layer* layer, uint32_t width, uint32_t height,
Romain Guya9489272011-06-22 20:58:11 -0700271 bool isOpaque, GLenum renderTarget, float* transform) {
Romain Guyaa6c24c2011-04-28 18:40:04 -0700272 if (layer) {
Romain Guy9ace8f52011-07-07 20:50:11 -0700273 layer->setBlend(!isOpaque);
274 layer->setSize(width, height);
Romain Guyaa6c24c2011-04-28 18:40:04 -0700275 layer->layer.set(0.0f, 0.0f, width, height);
276 layer->region.set(width, height);
277 layer->regionRect.set(0.0f, 0.0f, width, height);
Romain Guy9ace8f52011-07-07 20:50:11 -0700278 layer->getTexTransform().load(transform);
Romain Guy8f0095c2011-05-02 17:24:22 -0700279
Romain Guy9ace8f52011-07-07 20:50:11 -0700280 if (renderTarget != layer->getRenderTarget()) {
281 layer->setRenderTarget(renderTarget);
282 layer->bindTexture();
283 layer->setFilter(GL_NEAREST, GL_NEAREST, false, true);
284 layer->setWrap(GL_CLAMP_TO_EDGE, GL_CLAMP_TO_EDGE, false, true);
Romain Guy4a5a7152011-06-24 17:53:53 -0700285 }
Romain Guyaa6c24c2011-04-28 18:40:04 -0700286 }
287}
288
Romain Guyada830f2011-01-13 12:13:20 -0800289void LayerRenderer::destroyLayer(Layer* layer) {
290 if (layer) {
Romain Guyeea60692011-07-26 20:35:55 -0700291 LAYER_RENDERER_LOGD("Recycling layer, %dx%d fbo = %d",
292 layer->getWidth(), layer->getHeight(), layer->getFbo());
Romain Guy1fc883b2011-01-12 14:30:59 -0800293
Romain Guy9ace8f52011-07-07 20:50:11 -0700294 if (layer->getFbo()) {
295 Caches::getInstance().fboCache.put(layer->getFbo());
Romain Guy09b7c912011-02-02 20:28:09 -0800296 }
Romain Guyada830f2011-01-13 12:13:20 -0800297
Romain Guy09b7c912011-02-02 20:28:09 -0800298 if (!Caches::getInstance().layerCache.put(layer)) {
Romain Guyeea60692011-07-26 20:35:55 -0700299 LAYER_RENDERER_LOGD(" Destroyed!");
Romain Guy9ace8f52011-07-07 20:50:11 -0700300 layer->deleteTexture();
Romain Guy09b7c912011-02-02 20:28:09 -0800301 delete layer;
302 } else {
Romain Guyeea60692011-07-26 20:35:55 -0700303 LAYER_RENDERER_LOGD(" Cached!");
Romain Guy65b345f2011-07-27 18:51:50 -0700304#if DEBUG_LAYER_RENDERER
Romain Guyeea60692011-07-26 20:35:55 -0700305 Caches::getInstance().layerCache.dump();
306#endif
Romain Guy09b7c912011-02-02 20:28:09 -0800307 layer->region.clear();
308 }
Romain Guyada830f2011-01-13 12:13:20 -0800309 }
Romain Guy6c319ca2011-01-11 14:29:25 -0800310}
311
Romain Guyada830f2011-01-13 12:13:20 -0800312void LayerRenderer::destroyLayerDeferred(Layer* layer) {
313 if (layer) {
Romain Guy9ace8f52011-07-07 20:50:11 -0700314 LAYER_RENDERER_LOGD("Deferring layer destruction, fbo = %d", layer->getFbo());
Romain Guy1fc883b2011-01-12 14:30:59 -0800315
Romain Guyada830f2011-01-13 12:13:20 -0800316 Caches::getInstance().deleteLayerDeferred(layer);
317 }
Romain Guy57066eb2011-01-12 12:53:32 -0800318}
319
Romain Guy77a81162011-06-14 16:45:55 -0700320bool LayerRenderer::copyLayer(Layer* layer, SkBitmap* bitmap) {
321 Caches& caches = Caches::getInstance();
Romain Guy9ace8f52011-07-07 20:50:11 -0700322 if (layer && layer->isTextureLayer() && bitmap->width() <= caches.maxTextureSize &&
Romain Guy77a81162011-06-14 16:45:55 -0700323 bitmap->height() <= caches.maxTextureSize) {
324
325 GLuint fbo = caches.fboCache.get();
326 if (!fbo) {
327 LOGW("Could not obtain an FBO");
328 return false;
329 }
330
Romain Guyd6b2a002011-06-17 17:45:59 -0700331 SkAutoLockPixels alp(*bitmap);
332
Romain Guy77a81162011-06-14 16:45:55 -0700333 GLuint texture;
334 GLuint previousFbo;
335
336 GLenum format;
337 GLenum type;
338
Romain Guyd6b2a002011-06-17 17:45:59 -0700339 GLenum error = GL_NO_ERROR;
340 bool status = false;
341
Romain Guy77a81162011-06-14 16:45:55 -0700342 switch (bitmap->config()) {
343 case SkBitmap::kA8_Config:
344 format = GL_ALPHA;
345 type = GL_UNSIGNED_BYTE;
346 break;
347 case SkBitmap::kRGB_565_Config:
348 format = GL_RGB;
349 type = GL_UNSIGNED_SHORT_5_6_5;
350 break;
351 case SkBitmap::kARGB_4444_Config:
352 format = GL_RGBA;
353 type = GL_UNSIGNED_SHORT_4_4_4_4;
354 break;
355 case SkBitmap::kARGB_8888_Config:
356 default:
357 format = GL_RGBA;
358 type = GL_UNSIGNED_BYTE;
359 break;
360 }
361
Romain Guy9ace8f52011-07-07 20:50:11 -0700362 float alpha = layer->getAlpha();
363 SkXfermode::Mode mode = layer->getMode();
Romain Guyd6b2a002011-06-17 17:45:59 -0700364
Romain Guy9ace8f52011-07-07 20:50:11 -0700365 layer->setAlpha(255, SkXfermode::kSrc_Mode);
366 layer->setFbo(fbo);
Romain Guyd6b2a002011-06-17 17:45:59 -0700367
Romain Guy77a81162011-06-14 16:45:55 -0700368 glGetIntegerv(GL_FRAMEBUFFER_BINDING, (GLint*) &previousFbo);
369 glBindFramebuffer(GL_FRAMEBUFFER, fbo);
370
371 glGenTextures(1, &texture);
Romain Guyd6b2a002011-06-17 17:45:59 -0700372 if ((error = glGetError()) != GL_NO_ERROR) goto error;
Romain Guy77a81162011-06-14 16:45:55 -0700373
374 glActiveTexture(GL_TEXTURE0);
375 glBindTexture(GL_TEXTURE_2D, texture);
376
Romain Guyec19b4a2011-07-07 21:05:04 -0700377 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
378 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
Romain Guy77a81162011-06-14 16:45:55 -0700379
380 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
381 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
382
383 glTexImage2D(GL_TEXTURE_2D, 0, format, bitmap->width(), bitmap->height(),
384 0, format, type, NULL);
Romain Guyd6b2a002011-06-17 17:45:59 -0700385 if ((error = glGetError()) != GL_NO_ERROR) goto error;
386
Romain Guy77a81162011-06-14 16:45:55 -0700387 glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0,
388 GL_TEXTURE_2D, texture, 0);
Romain Guyd6b2a002011-06-17 17:45:59 -0700389 if ((error = glGetError()) != GL_NO_ERROR) goto error;
Romain Guy77a81162011-06-14 16:45:55 -0700390
Romain Guyd6b2a002011-06-17 17:45:59 -0700391 {
392 LayerRenderer renderer(layer);
393 renderer.setViewport(bitmap->width(), bitmap->height());
394 renderer.OpenGLRenderer::prepareDirty(0.0f, 0.0f,
Romain Guy9ace8f52011-07-07 20:50:11 -0700395 bitmap->width(), bitmap->height(), !layer->isBlend());
Romain Guyd6b2a002011-06-17 17:45:59 -0700396 if ((error = glGetError()) != GL_NO_ERROR) goto error;
Romain Guy77a81162011-06-14 16:45:55 -0700397
Romain Guyd6b2a002011-06-17 17:45:59 -0700398 {
399 Rect bounds;
400 bounds.set(0.0f, 0.0f, bitmap->width(), bitmap->height());
401 renderer.drawTextureLayer(layer, bounds);
Romain Guy77a81162011-06-14 16:45:55 -0700402
Romain Guyd6b2a002011-06-17 17:45:59 -0700403 glReadPixels(0, 0, bitmap->width(), bitmap->height(), format,
404 type, bitmap->getPixels());
Romain Guy77a81162011-06-14 16:45:55 -0700405
Romain Guyd6b2a002011-06-17 17:45:59 -0700406 if ((error = glGetError()) != GL_NO_ERROR) goto error;
407 }
Romain Guy77a81162011-06-14 16:45:55 -0700408
Romain Guyd6b2a002011-06-17 17:45:59 -0700409 status = true;
410 }
Romain Guy77a81162011-06-14 16:45:55 -0700411
Romain Guyd6b2a002011-06-17 17:45:59 -0700412error:
413#if DEBUG_OPENGL
414 if (error != GL_NO_ERROR) {
415 LOGD("GL error while copying layer into bitmap = 0x%x", error);
416 }
417#endif
Romain Guy77a81162011-06-14 16:45:55 -0700418
419 glBindFramebuffer(GL_FRAMEBUFFER, previousFbo);
Romain Guy9ace8f52011-07-07 20:50:11 -0700420 layer->setAlpha(alpha, mode);
421 layer->setFbo(0);
Romain Guy77a81162011-06-14 16:45:55 -0700422 glDeleteTextures(1, &texture);
423 caches.fboCache.put(fbo);
424
Romain Guyd6b2a002011-06-17 17:45:59 -0700425 return status;
Romain Guy77a81162011-06-14 16:45:55 -0700426 }
427 return false;
428}
429
Romain Guy6c319ca2011-01-11 14:29:25 -0800430}; // namespace uirenderer
431}; // namespace android