blob: f81640b22b376eba411c4f67b503a8ffb1592ab9 [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 Guy79537452011-10-12 13:48:51 -070034LayerRenderer::LayerRenderer(Layer* layer): mLayer(layer) {
35}
36
37LayerRenderer::~LayerRenderer() {
38}
39
Chet Haase44b2fe32012-06-06 19:03:58 -070040int LayerRenderer::prepareDirty(float left, float top, float right, float bottom, bool opaque) {
Romain Guy9ace8f52011-07-07 20:50:11 -070041 LAYER_RENDERER_LOGD("Rendering into layer, fbo = %d", mLayer->getFbo());
Romain Guy1fc883b2011-01-12 14:30:59 -080042
Romain Guy9ace8f52011-07-07 20:50:11 -070043 glBindFramebuffer(GL_FRAMEBUFFER, mLayer->getFbo());
Romain Guy62687ec2011-02-02 15:44:19 -080044
Romain Guy09b7c912011-02-02 20:28:09 -080045 const float width = mLayer->layer.getWidth();
46 const float height = mLayer->layer.getHeight();
47
Romain Guy3a3133d2011-02-01 22:59:58 -080048 Rect dirty(left, top, right, bottom);
49 if (dirty.isEmpty() || (dirty.left <= 0 && dirty.top <= 0 &&
Romain Guy09b7c912011-02-02 20:28:09 -080050 dirty.right >= width && dirty.bottom >= height)) {
Romain Guy3a3133d2011-02-01 22:59:58 -080051 mLayer->region.clear();
Romain Guy09b7c912011-02-02 20:28:09 -080052 dirty.set(0.0f, 0.0f, width, height);
Romain Guy3a3133d2011-02-01 22:59:58 -080053 } else {
Romain Guy09b7c912011-02-02 20:28:09 -080054 dirty.intersect(0.0f, 0.0f, width, height);
Romain Guy3a3133d2011-02-01 22:59:58 -080055 android::Rect r(dirty.left, dirty.top, dirty.right, dirty.bottom);
56 mLayer->region.subtractSelf(r);
57 }
Romain Guyc88e3572011-01-22 00:32:12 -080058
Chet Haase44b2fe32012-06-06 19:03:58 -070059 return OpenGLRenderer::prepareDirty(dirty.left, dirty.top, dirty.right, dirty.bottom, opaque);
Romain Guy6c319ca2011-01-11 14:29:25 -080060}
61
62void LayerRenderer::finish() {
63 OpenGLRenderer::finish();
Romain Guy1fc883b2011-01-12 14:30:59 -080064
Romain Guyf219da52011-01-16 12:54:25 -080065 generateMesh();
66
Romain Guy9ace8f52011-07-07 20:50:11 -070067 LAYER_RENDERER_LOGD("Finished rendering into layer, fbo = %d", mLayer->getFbo());
Romain Guy42f3a4b2011-01-19 13:42:26 -080068
69 // No need to unbind our FBO, this will be taken care of by the caller
70 // who will invoke OpenGLRenderer::resume()
71}
72
73GLint LayerRenderer::getTargetFbo() {
Romain Guy9ace8f52011-07-07 20:50:11 -070074 return mLayer->getFbo();
Romain Guy6c319ca2011-01-11 14:29:25 -080075}
76
77///////////////////////////////////////////////////////////////////////////////
Romain Guyf219da52011-01-16 12:54:25 -080078// Dirty region tracking
79///////////////////////////////////////////////////////////////////////////////
80
81bool LayerRenderer::hasLayer() {
82 return true;
83}
84
85Region* LayerRenderer::getRegion() {
Romain Guyf219da52011-01-16 12:54:25 -080086 if (getSnapshot()->flags & Snapshot::kFlagFboTarget) {
87 return OpenGLRenderer::getRegion();
88 }
89 return &mLayer->region;
Romain Guyf219da52011-01-16 12:54:25 -080090}
91
Romain Guy8a3957d2011-09-07 17:55:15 -070092// TODO: This implementation is flawed and can generate T-junctions
93// in the mesh, which will in turn produce cracks when the
94// mesh is rotated/skewed. The easiest way to fix this would
95// be, for each row, to add new vertices shared with the previous
96// row when the two rows share an edge.
97// In practice, T-junctions do not appear often so this has yet
98// to be fixed.
Romain Guyf219da52011-01-16 12:54:25 -080099void LayerRenderer::generateMesh() {
Romain Guyf219da52011-01-16 12:54:25 -0800100 if (mLayer->region.isRect() || mLayer->region.isEmpty()) {
101 if (mLayer->mesh) {
102 delete mLayer->mesh;
103 delete mLayer->meshIndices;
104
105 mLayer->mesh = NULL;
106 mLayer->meshIndices = NULL;
107 mLayer->meshElementCount = 0;
108 }
Romain Guy40667672011-03-18 14:34:03 -0700109
Romain Guy9fc27812011-04-27 14:21:41 -0700110 mLayer->setRegionAsRect();
Romain Guyf219da52011-01-16 12:54:25 -0800111 return;
112 }
113
114 size_t count;
115 const android::Rect* rects = mLayer->region.getArray(&count);
116
117 GLsizei elementCount = count * 6;
118
119 if (mLayer->mesh && mLayer->meshElementCount < elementCount) {
120 delete mLayer->mesh;
121 delete mLayer->meshIndices;
122
123 mLayer->mesh = NULL;
124 mLayer->meshIndices = NULL;
125 }
126
Romain Guy4f09f542011-01-26 22:41:43 -0800127 bool rebuildIndices = false;
Romain Guyf219da52011-01-16 12:54:25 -0800128 if (!mLayer->mesh) {
129 mLayer->mesh = new TextureVertex[count * 4];
130 mLayer->meshIndices = new uint16_t[elementCount];
Romain Guy4f09f542011-01-26 22:41:43 -0800131 rebuildIndices = true;
Romain Guyf219da52011-01-16 12:54:25 -0800132 }
Romain Guy4f09f542011-01-26 22:41:43 -0800133 mLayer->meshElementCount = elementCount;
Romain Guyf219da52011-01-16 12:54:25 -0800134
Romain Guy9ace8f52011-07-07 20:50:11 -0700135 const float texX = 1.0f / float(mLayer->getWidth());
136 const float texY = 1.0f / float(mLayer->getHeight());
Romain Guyf219da52011-01-16 12:54:25 -0800137 const float height = mLayer->layer.getHeight();
138
139 TextureVertex* mesh = mLayer->mesh;
140 uint16_t* indices = mLayer->meshIndices;
141
142 for (size_t i = 0; i < count; i++) {
143 const android::Rect* r = &rects[i];
144
145 const float u1 = r->left * texX;
146 const float v1 = (height - r->top) * texY;
147 const float u2 = r->right * texX;
148 const float v2 = (height - r->bottom) * texY;
149
150 TextureVertex::set(mesh++, r->left, r->top, u1, v1);
151 TextureVertex::set(mesh++, r->right, r->top, u2, v1);
152 TextureVertex::set(mesh++, r->left, r->bottom, u1, v2);
153 TextureVertex::set(mesh++, r->right, r->bottom, u2, v2);
154
Romain Guy4f09f542011-01-26 22:41:43 -0800155 if (rebuildIndices) {
156 uint16_t quad = i * 4;
157 int index = i * 6;
158 indices[index ] = quad; // top-left
159 indices[index + 1] = quad + 1; // top-right
160 indices[index + 2] = quad + 2; // bottom-left
161 indices[index + 3] = quad + 2; // bottom-left
162 indices[index + 4] = quad + 1; // top-right
163 indices[index + 5] = quad + 3; // bottom-right
164 }
Romain Guyf219da52011-01-16 12:54:25 -0800165 }
Romain Guyf219da52011-01-16 12:54:25 -0800166}
167
168///////////////////////////////////////////////////////////////////////////////
169// Layers management
Romain Guy6c319ca2011-01-11 14:29:25 -0800170///////////////////////////////////////////////////////////////////////////////
171
Romain Guyada830f2011-01-13 12:13:20 -0800172Layer* LayerRenderer::createLayer(uint32_t width, uint32_t height, bool isOpaque) {
Romain Guyeea60692011-07-26 20:35:55 -0700173 LAYER_RENDERER_LOGD("Requesting new render layer %dx%d", width, height);
Romain Guy1fc883b2011-01-12 14:30:59 -0800174
Romain Guya1d3c912011-12-13 14:55:06 -0800175 Caches& caches = Caches::getInstance();
176 GLuint fbo = caches.fboCache.get();
Romain Guy09b7c912011-02-02 20:28:09 -0800177 if (!fbo) {
Steve Block8564c8d2012-01-05 23:22:43 +0000178 ALOGW("Could not obtain an FBO");
Romain Guy09b7c912011-02-02 20:28:09 -0800179 return NULL;
180 }
181
Romain Guya1d3c912011-12-13 14:55:06 -0800182 caches.activeTexture(0);
183 Layer* layer = caches.layerCache.get(width, height);
Romain Guy09b7c912011-02-02 20:28:09 -0800184 if (!layer) {
Steve Block8564c8d2012-01-05 23:22:43 +0000185 ALOGW("Could not obtain a layer");
Romain Guy09b7c912011-02-02 20:28:09 -0800186 return NULL;
187 }
188
Romain Guy9ace8f52011-07-07 20:50:11 -0700189 layer->setFbo(fbo);
Romain Guy09b7c912011-02-02 20:28:09 -0800190 layer->layer.set(0.0f, 0.0f, width, height);
Romain Guy9ace8f52011-07-07 20:50:11 -0700191 layer->texCoords.set(0.0f, height / float(layer->getHeight()),
192 width / float(layer->getWidth()), 0.0f);
193 layer->setAlpha(255, SkXfermode::kSrcOver_Mode);
194 layer->setBlend(!isOpaque);
195 layer->setColorFilter(NULL);
Romain Guy09b7c912011-02-02 20:28:09 -0800196 layer->region.clear();
Romain Guyada830f2011-01-13 12:13:20 -0800197
Romain Guy6c319ca2011-01-11 14:29:25 -0800198 GLuint previousFbo;
199 glGetIntegerv(GL_FRAMEBUFFER_BINDING, (GLint*) &previousFbo);
200
Romain Guy9ace8f52011-07-07 20:50:11 -0700201 glBindFramebuffer(GL_FRAMEBUFFER, layer->getFbo());
202 layer->bindTexture();
Romain Guy6c319ca2011-01-11 14:29:25 -0800203
Romain Guy09b7c912011-02-02 20:28:09 -0800204 // Initialize the texture if needed
Romain Guy9ace8f52011-07-07 20:50:11 -0700205 if (layer->isEmpty()) {
206 layer->setEmpty(false);
207 layer->allocateTexture(GL_RGBA, GL_UNSIGNED_BYTE);
Romain Guy6c319ca2011-01-11 14:29:25 -0800208
Romain Guy09b7c912011-02-02 20:28:09 -0800209 if (glGetError() != GL_NO_ERROR) {
Steve Block5baa3a62011-12-20 16:23:08 +0000210 ALOGD("Could not allocate texture for layer (fbo=%d %dx%d)",
Romain Guy5cd5c3f2011-10-17 17:10:02 -0700211 fbo, width, height);
Romain Guy9ace8f52011-07-07 20:50:11 -0700212
Romain Guy09b7c912011-02-02 20:28:09 -0800213 glBindFramebuffer(GL_FRAMEBUFFER, previousFbo);
Romain Guya1d3c912011-12-13 14:55:06 -0800214 caches.fboCache.put(fbo);
Romain Guy9ace8f52011-07-07 20:50:11 -0700215
216 layer->deleteTexture();
Romain Guy09b7c912011-02-02 20:28:09 -0800217 delete layer;
Romain Guy9ace8f52011-07-07 20:50:11 -0700218
Romain Guy09b7c912011-02-02 20:28:09 -0800219 return NULL;
220 }
Romain Guy6c319ca2011-01-11 14:29:25 -0800221 }
222
223 glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D,
Romain Guy9ace8f52011-07-07 20:50:11 -0700224 layer->getTexture(), 0);
Romain Guy6c319ca2011-01-11 14:29:25 -0800225
Romain Guy586cae32012-07-13 15:28:31 -0700226 caches.disableScissor();
Romain Guy40a787f2011-03-02 15:15:42 -0800227 glClear(GL_COLOR_BUFFER_BIT);
Romain Guy40a787f2011-03-02 15:15:42 -0800228
Romain Guy6c319ca2011-01-11 14:29:25 -0800229 glBindFramebuffer(GL_FRAMEBUFFER, previousFbo);
230
Romain Guyada830f2011-01-13 12:13:20 -0800231 return layer;
Romain Guy6c319ca2011-01-11 14:29:25 -0800232}
233
Romain Guyada830f2011-01-13 12:13:20 -0800234bool LayerRenderer::resizeLayer(Layer* layer, uint32_t width, uint32_t height) {
235 if (layer) {
Romain Guy9ace8f52011-07-07 20:50:11 -0700236 LAYER_RENDERER_LOGD("Resizing layer fbo = %d to %dx%d", layer->getFbo(), width, height);
Romain Guy1fc883b2011-01-12 14:30:59 -0800237
Romain Guy09b7c912011-02-02 20:28:09 -0800238 if (Caches::getInstance().layerCache.resize(layer, width, height)) {
239 layer->layer.set(0.0f, 0.0f, width, height);
Romain Guy9ace8f52011-07-07 20:50:11 -0700240 layer->texCoords.set(0.0f, height / float(layer->getHeight()),
241 width / float(layer->getWidth()), 0.0f);
Romain Guy09b7c912011-02-02 20:28:09 -0800242 } else {
Romain Guy9ace8f52011-07-07 20:50:11 -0700243 layer->deleteTexture();
Romain Guy09b7c912011-02-02 20:28:09 -0800244 delete layer;
Romain Guyada830f2011-01-13 12:13:20 -0800245 return false;
246 }
Romain Guy6c319ca2011-01-11 14:29:25 -0800247 }
Romain Guy09b7c912011-02-02 20:28:09 -0800248
Romain Guyada830f2011-01-13 12:13:20 -0800249 return true;
Romain Guy6c319ca2011-01-11 14:29:25 -0800250}
251
Romain Guy4a5a7152011-06-24 17:53:53 -0700252Layer* LayerRenderer::createTextureLayer(bool isOpaque) {
253 LAYER_RENDERER_LOGD("Creating new texture layer");
254
255 Layer* layer = new Layer(0, 0);
Romain Guy9ace8f52011-07-07 20:50:11 -0700256 layer->setCacheable(false);
257 layer->setTextureLayer(true);
258 layer->setBlend(!isOpaque);
259 layer->setEmpty(true);
260 layer->setFbo(0);
261 layer->setAlpha(255, SkXfermode::kSrcOver_Mode);
Romain Guy4a5a7152011-06-24 17:53:53 -0700262 layer->layer.set(0.0f, 0.0f, 0.0f, 0.0f);
Romain Guya9dc86b2011-10-11 14:06:21 -0700263 layer->texCoords.set(0.0f, 1.0f, 1.0f, 0.0f);
Romain Guy4a5a7152011-06-24 17:53:53 -0700264 layer->region.clear();
Romain Guy9ace8f52011-07-07 20:50:11 -0700265 layer->setRenderTarget(GL_NONE); // see ::updateTextureLayer()
Romain Guy4a5a7152011-06-24 17:53:53 -0700266
Romain Guya1d3c912011-12-13 14:55:06 -0800267 Caches::getInstance().activeTexture(0);
Romain Guy9ace8f52011-07-07 20:50:11 -0700268 layer->generateTexture();
Romain Guy4a5a7152011-06-24 17:53:53 -0700269
270 return layer;
271}
272
Romain Guyaa6c24c2011-04-28 18:40:04 -0700273void LayerRenderer::updateTextureLayer(Layer* layer, uint32_t width, uint32_t height,
Romain Guya9489272011-06-22 20:58:11 -0700274 bool isOpaque, GLenum renderTarget, float* transform) {
Romain Guyaa6c24c2011-04-28 18:40:04 -0700275 if (layer) {
Romain Guy9ace8f52011-07-07 20:50:11 -0700276 layer->setBlend(!isOpaque);
277 layer->setSize(width, height);
Romain Guyaa6c24c2011-04-28 18:40:04 -0700278 layer->layer.set(0.0f, 0.0f, width, height);
279 layer->region.set(width, height);
280 layer->regionRect.set(0.0f, 0.0f, width, height);
Romain Guy9ace8f52011-07-07 20:50:11 -0700281 layer->getTexTransform().load(transform);
Romain Guy8f0095c2011-05-02 17:24:22 -0700282
Romain Guy9ace8f52011-07-07 20:50:11 -0700283 if (renderTarget != layer->getRenderTarget()) {
284 layer->setRenderTarget(renderTarget);
285 layer->bindTexture();
Romain Guyd21b6e12011-11-30 20:21:23 -0800286 layer->setFilter(GL_NEAREST, false, true);
287 layer->setWrap(GL_CLAMP_TO_EDGE, false, true);
Romain Guy4a5a7152011-06-24 17:53:53 -0700288 }
Romain Guyaa6c24c2011-04-28 18:40:04 -0700289 }
290}
291
Romain Guyada830f2011-01-13 12:13:20 -0800292void LayerRenderer::destroyLayer(Layer* layer) {
293 if (layer) {
Romain Guyeea60692011-07-26 20:35:55 -0700294 LAYER_RENDERER_LOGD("Recycling layer, %dx%d fbo = %d",
295 layer->getWidth(), layer->getHeight(), layer->getFbo());
Romain Guy1fc883b2011-01-12 14:30:59 -0800296
Romain Guy9c4b79a2011-11-10 19:23:58 -0800297 GLuint fbo = layer->getFbo();
298 if (fbo) {
299 flushLayer(layer);
300 Caches::getInstance().fboCache.put(fbo);
Romain Guy5c88fc72012-04-02 17:43:05 -0700301 layer->setFbo(0);
Romain Guy09b7c912011-02-02 20:28:09 -0800302 }
Romain Guyada830f2011-01-13 12:13:20 -0800303
Romain Guy09b7c912011-02-02 20:28:09 -0800304 if (!Caches::getInstance().layerCache.put(layer)) {
Romain Guyeea60692011-07-26 20:35:55 -0700305 LAYER_RENDERER_LOGD(" Destroyed!");
Romain Guy9ace8f52011-07-07 20:50:11 -0700306 layer->deleteTexture();
Romain Guy09b7c912011-02-02 20:28:09 -0800307 delete layer;
308 } else {
Romain Guyeea60692011-07-26 20:35:55 -0700309 LAYER_RENDERER_LOGD(" Cached!");
Romain Guy65b345f2011-07-27 18:51:50 -0700310#if DEBUG_LAYER_RENDERER
Romain Guyeea60692011-07-26 20:35:55 -0700311 Caches::getInstance().layerCache.dump();
312#endif
Romain Guy09b7c912011-02-02 20:28:09 -0800313 layer->region.clear();
314 }
Romain Guyada830f2011-01-13 12:13:20 -0800315 }
Romain Guy6c319ca2011-01-11 14:29:25 -0800316}
317
Romain Guyada830f2011-01-13 12:13:20 -0800318void LayerRenderer::destroyLayerDeferred(Layer* layer) {
319 if (layer) {
Romain Guy9ace8f52011-07-07 20:50:11 -0700320 LAYER_RENDERER_LOGD("Deferring layer destruction, fbo = %d", layer->getFbo());
Romain Guy1fc883b2011-01-12 14:30:59 -0800321
Romain Guyada830f2011-01-13 12:13:20 -0800322 Caches::getInstance().deleteLayerDeferred(layer);
323 }
Romain Guy57066eb2011-01-12 12:53:32 -0800324}
325
Romain Guy9c4b79a2011-11-10 19:23:58 -0800326void LayerRenderer::flushLayer(Layer* layer) {
327#ifdef GL_EXT_discard_framebuffer
328 GLuint fbo = layer->getFbo();
329 if (layer && fbo) {
330 // If possible, discard any enqueud operations on deferred
331 // rendering architectures
332 if (Caches::getInstance().extensions.hasDiscardFramebuffer()) {
333 GLuint previousFbo;
334 glGetIntegerv(GL_FRAMEBUFFER_BINDING, (GLint*) &previousFbo);
335
336 GLenum attachments = GL_COLOR_ATTACHMENT0;
337 if (fbo != previousFbo) glBindFramebuffer(GL_FRAMEBUFFER, fbo);
338 glDiscardFramebufferEXT(GL_FRAMEBUFFER, 1, &attachments);
339
340 if (fbo != previousFbo) glBindFramebuffer(GL_FRAMEBUFFER, previousFbo);
341 }
342 }
343#endif
344}
345
Romain Guy77a81162011-06-14 16:45:55 -0700346bool LayerRenderer::copyLayer(Layer* layer, SkBitmap* bitmap) {
347 Caches& caches = Caches::getInstance();
Romain Guy9ace8f52011-07-07 20:50:11 -0700348 if (layer && layer->isTextureLayer() && bitmap->width() <= caches.maxTextureSize &&
Romain Guy77a81162011-06-14 16:45:55 -0700349 bitmap->height() <= caches.maxTextureSize) {
350
351 GLuint fbo = caches.fboCache.get();
352 if (!fbo) {
Steve Block8564c8d2012-01-05 23:22:43 +0000353 ALOGW("Could not obtain an FBO");
Romain Guy77a81162011-06-14 16:45:55 -0700354 return false;
355 }
356
Romain Guyd6b2a002011-06-17 17:45:59 -0700357 SkAutoLockPixels alp(*bitmap);
358
Romain Guy77a81162011-06-14 16:45:55 -0700359 GLuint texture;
360 GLuint previousFbo;
361
362 GLenum format;
363 GLenum type;
364
Romain Guyd6b2a002011-06-17 17:45:59 -0700365 GLenum error = GL_NO_ERROR;
366 bool status = false;
367
Romain Guy77a81162011-06-14 16:45:55 -0700368 switch (bitmap->config()) {
369 case SkBitmap::kA8_Config:
370 format = GL_ALPHA;
371 type = GL_UNSIGNED_BYTE;
372 break;
373 case SkBitmap::kRGB_565_Config:
374 format = GL_RGB;
375 type = GL_UNSIGNED_SHORT_5_6_5;
376 break;
377 case SkBitmap::kARGB_4444_Config:
378 format = GL_RGBA;
379 type = GL_UNSIGNED_SHORT_4_4_4_4;
380 break;
381 case SkBitmap::kARGB_8888_Config:
382 default:
383 format = GL_RGBA;
384 type = GL_UNSIGNED_BYTE;
385 break;
386 }
387
Romain Guy9ace8f52011-07-07 20:50:11 -0700388 float alpha = layer->getAlpha();
389 SkXfermode::Mode mode = layer->getMode();
Romain Guyd6b2a002011-06-17 17:45:59 -0700390
Romain Guy9ace8f52011-07-07 20:50:11 -0700391 layer->setAlpha(255, SkXfermode::kSrc_Mode);
392 layer->setFbo(fbo);
Romain Guyd6b2a002011-06-17 17:45:59 -0700393
Romain Guy77a81162011-06-14 16:45:55 -0700394 glGetIntegerv(GL_FRAMEBUFFER_BINDING, (GLint*) &previousFbo);
395 glBindFramebuffer(GL_FRAMEBUFFER, fbo);
396
397 glGenTextures(1, &texture);
Romain Guyd6b2a002011-06-17 17:45:59 -0700398 if ((error = glGetError()) != GL_NO_ERROR) goto error;
Romain Guy77a81162011-06-14 16:45:55 -0700399
Romain Guya1d3c912011-12-13 14:55:06 -0800400 caches.activeTexture(0);
Romain Guy77a81162011-06-14 16:45:55 -0700401 glBindTexture(GL_TEXTURE_2D, texture);
402
Romain Guyec19b4a2011-07-07 21:05:04 -0700403 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
404 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
Romain Guy77a81162011-06-14 16:45:55 -0700405
406 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
407 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
408
409 glTexImage2D(GL_TEXTURE_2D, 0, format, bitmap->width(), bitmap->height(),
410 0, format, type, NULL);
Romain Guyd6b2a002011-06-17 17:45:59 -0700411 if ((error = glGetError()) != GL_NO_ERROR) goto error;
412
Romain Guy77a81162011-06-14 16:45:55 -0700413 glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0,
414 GL_TEXTURE_2D, texture, 0);
Romain Guyd6b2a002011-06-17 17:45:59 -0700415 if ((error = glGetError()) != GL_NO_ERROR) goto error;
Romain Guy77a81162011-06-14 16:45:55 -0700416
Romain Guyd6b2a002011-06-17 17:45:59 -0700417 {
418 LayerRenderer renderer(layer);
419 renderer.setViewport(bitmap->width(), bitmap->height());
420 renderer.OpenGLRenderer::prepareDirty(0.0f, 0.0f,
Romain Guy9ace8f52011-07-07 20:50:11 -0700421 bitmap->width(), bitmap->height(), !layer->isBlend());
Romain Guya9dc86b2011-10-11 14:06:21 -0700422
Romain Guy586cae32012-07-13 15:28:31 -0700423 caches.disableScissor();
Romain Guya9dc86b2011-10-11 14:06:21 -0700424 renderer.translate(0.0f, bitmap->height());
425 renderer.scale(1.0f, -1.0f);
426
427 mat4 texTransform(layer->getTexTransform());
428
429 mat4 invert;
430 invert.translate(0.0f, 1.0f, 0.0f);
431 invert.scale(1.0f, -1.0f, 1.0f);
432 layer->getTexTransform().multiply(invert);
433
Romain Guyd6b2a002011-06-17 17:45:59 -0700434 if ((error = glGetError()) != GL_NO_ERROR) goto error;
Romain Guy77a81162011-06-14 16:45:55 -0700435
Romain Guyd6b2a002011-06-17 17:45:59 -0700436 {
437 Rect bounds;
438 bounds.set(0.0f, 0.0f, bitmap->width(), bitmap->height());
439 renderer.drawTextureLayer(layer, bounds);
Romain Guy77a81162011-06-14 16:45:55 -0700440
Romain Guyd6b2a002011-06-17 17:45:59 -0700441 glReadPixels(0, 0, bitmap->width(), bitmap->height(), format,
442 type, bitmap->getPixels());
Romain Guy77a81162011-06-14 16:45:55 -0700443
Romain Guyd6b2a002011-06-17 17:45:59 -0700444 if ((error = glGetError()) != GL_NO_ERROR) goto error;
445 }
Romain Guy77a81162011-06-14 16:45:55 -0700446
Romain Guya9dc86b2011-10-11 14:06:21 -0700447 layer->getTexTransform().load(texTransform);
Romain Guyd6b2a002011-06-17 17:45:59 -0700448 status = true;
449 }
Romain Guy77a81162011-06-14 16:45:55 -0700450
Romain Guyd6b2a002011-06-17 17:45:59 -0700451error:
452#if DEBUG_OPENGL
453 if (error != GL_NO_ERROR) {
Steve Block5baa3a62011-12-20 16:23:08 +0000454 ALOGD("GL error while copying layer into bitmap = 0x%x", error);
Romain Guyd6b2a002011-06-17 17:45:59 -0700455 }
456#endif
Romain Guy77a81162011-06-14 16:45:55 -0700457
458 glBindFramebuffer(GL_FRAMEBUFFER, previousFbo);
Romain Guy9ace8f52011-07-07 20:50:11 -0700459 layer->setAlpha(alpha, mode);
460 layer->setFbo(0);
Romain Guy77a81162011-06-14 16:45:55 -0700461 glDeleteTextures(1, &texture);
462 caches.fboCache.put(fbo);
463
Romain Guyd6b2a002011-06-17 17:45:59 -0700464 return status;
Romain Guy77a81162011-06-14 16:45:55 -0700465 }
466 return false;
467}
468
Romain Guy6c319ca2011-01-11 14:29:25 -0800469}; // namespace uirenderer
470}; // namespace android