blob: 7f4977adbb804c227bb15c8023ffae7effc62aa1 [file] [log] [blame]
Chet Haased15ebf22012-09-05 11:40:29 -07001/*
2 * Copyright (C) 2012 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 <utils/Log.h>
20
Romain Guy96885eb2013-03-26 15:05:58 -070021#include "DisplayList.h"
22#include "DeferredDisplayList.h"
Chet Haased15ebf22012-09-05 11:40:29 -070023#include "Layer.h"
Chet Haase98d3a642012-09-26 10:27:40 -070024#include "LayerRenderer.h"
Chet Haased15ebf22012-09-05 11:40:29 -070025#include "OpenGLRenderer.h"
26#include "Caches.h"
27
28namespace android {
29namespace uirenderer {
30
Chet Haase603f6de2012-09-14 15:31:25 -070031Layer::Layer(const uint32_t layerWidth, const uint32_t layerHeight) {
32 mesh = NULL;
33 meshIndices = NULL;
34 meshElementCount = 0;
35 cacheable = true;
Romain Guy7c25aab2012-10-18 15:05:02 -070036 dirty = false;
Chet Haase603f6de2012-09-14 15:31:25 -070037 textureLayer = false;
38 renderTarget = GL_TEXTURE_2D;
39 texture.width = layerWidth;
40 texture.height = layerHeight;
41 colorFilter = NULL;
42 deferredUpdateScheduled = false;
43 renderer = NULL;
44 displayList = NULL;
45 fbo = 0;
Romain Guy3bbacf22013-02-06 16:51:04 -080046 stencil = NULL;
Romain Guy5bb3c732012-11-29 17:52:58 -080047 debugDrawUpdate = false;
Romain Guy96885eb2013-03-26 15:05:58 -070048 deferredList = NULL;
Chet Haase603f6de2012-09-14 15:31:25 -070049 Caches::getInstance().resourceCache.incrementRefcount(this);
50}
51
Chet Haased15ebf22012-09-05 11:40:29 -070052Layer::~Layer() {
Chet Haased15ebf22012-09-05 11:40:29 -070053 if (colorFilter) Caches::getInstance().resourceCache.decrementRefcount(colorFilter);
Chet Haase98d3a642012-09-26 10:27:40 -070054 removeFbo();
Romain Guy8a137492012-09-25 15:49:03 -070055 deleteTexture();
Romain Guy96885eb2013-03-26 15:05:58 -070056
57 delete[] mesh;
58 delete[] meshIndices;
59 delete deferredList;
Romain Guy97dc9172012-09-23 17:46:45 -070060}
61
Romain Guy2055aba2013-01-18 16:42:51 -080062uint32_t Layer::computeIdealWidth(uint32_t layerWidth) {
63 return uint32_t(ceilf(layerWidth / float(LAYER_SIZE)) * LAYER_SIZE);
64}
65
66uint32_t Layer::computeIdealHeight(uint32_t layerHeight) {
67 return uint32_t(ceilf(layerHeight / float(LAYER_SIZE)) * LAYER_SIZE);
68}
69
70bool Layer::resize(const uint32_t width, const uint32_t height) {
71 uint32_t desiredWidth = computeIdealWidth(width);
72 uint32_t desiredHeight = computeIdealWidth(height);
73
74 if (desiredWidth <= getWidth() && desiredHeight <= getHeight()) {
75 return true;
76 }
77
Romain Guyce4a7df2013-03-28 11:32:33 -070078 const uint32_t maxTextureSize = Caches::getInstance().maxTextureSize;
79 if (desiredWidth > maxTextureSize || desiredHeight > maxTextureSize) {
80 ALOGW("Layer exceeds max. dimensions supported by the GPU (%dx%d, max=%dx%d)",
81 desiredWidth, desiredHeight, maxTextureSize, maxTextureSize);
82 return false;
83 }
84
Romain Guy2055aba2013-01-18 16:42:51 -080085 uint32_t oldWidth = getWidth();
86 uint32_t oldHeight = getHeight();
87
88 setSize(desiredWidth, desiredHeight);
89
90 if (fbo) {
91 Caches::getInstance().activeTexture(0);
92 bindTexture();
93 allocateTexture(GL_RGBA, GL_UNSIGNED_BYTE);
94
95 if (glGetError() != GL_NO_ERROR) {
96 setSize(oldWidth, oldHeight);
97 return false;
98 }
99 }
100
101 if (stencil) {
Romain Guy3bbacf22013-02-06 16:51:04 -0800102 stencil->bind();
103 stencil->resize(desiredWidth, desiredHeight);
Romain Guy2055aba2013-01-18 16:42:51 -0800104
105 if (glGetError() != GL_NO_ERROR) {
106 setSize(oldWidth, oldHeight);
107 return false;
108 }
109 }
110
111 return true;
112}
113
Romain Guy8ce00302013-01-15 18:51:42 -0800114void Layer::removeFbo(bool flush) {
115 if (stencil) {
Romain Guy8ce00302013-01-15 18:51:42 -0800116 GLuint previousFbo;
117 glGetIntegerv(GL_FRAMEBUFFER_BINDING, (GLint*) &previousFbo);
118 if (fbo != previousFbo) glBindFramebuffer(GL_FRAMEBUFFER, fbo);
119 glFramebufferRenderbuffer(GL_FRAMEBUFFER, GL_STENCIL_ATTACHMENT, GL_RENDERBUFFER, 0);
120 if (fbo != previousFbo) glBindFramebuffer(GL_FRAMEBUFFER, previousFbo);
121
Romain Guy8d4aeb72013-02-12 16:08:55 -0800122 Caches::getInstance().renderBufferCache.put(stencil);
Romain Guy3bbacf22013-02-06 16:51:04 -0800123 stencil = NULL;
Romain Guy8ce00302013-01-15 18:51:42 -0800124 }
125
Chet Haase98d3a642012-09-26 10:27:40 -0700126 if (fbo) {
Romain Guy8ce00302013-01-15 18:51:42 -0800127 if (flush) LayerRenderer::flushLayer(this);
128 // If put fails the cache will delete the FBO
Chet Haase98d3a642012-09-26 10:27:40 -0700129 Caches::getInstance().fboCache.put(fbo);
130 fbo = 0;
Dave Burke56257af2012-09-25 20:30:09 -0700131 }
132}
133
Chet Haased15ebf22012-09-05 11:40:29 -0700134void Layer::setPaint(SkPaint* paint) {
135 OpenGLRenderer::getAlphaAndModeDirect(paint, &alpha, &mode);
136}
137
138void Layer::setColorFilter(SkiaColorFilter* filter) {
139 if (colorFilter) {
140 Caches::getInstance().resourceCache.decrementRefcount(colorFilter);
141 }
142 colorFilter = filter;
143 if (colorFilter) {
144 Caches::getInstance().resourceCache.incrementRefcount(colorFilter);
145 }
146}
147
Romain Guy96885eb2013-03-26 15:05:58 -0700148void Layer::defer() {
149 if (!deferredList) {
150 deferredList = new DeferredDisplayList;
151 }
152 DeferStateStruct deferredState(*deferredList, *renderer,
153 DisplayList::kReplayFlag_ClipChildren);
154
155 const float width = layer.getWidth();
156 const float height = layer.getHeight();
157
158 if (dirtyRect.isEmpty() || (dirtyRect.left <= 0 && dirtyRect.top <= 0 &&
159 dirtyRect.right >= width && dirtyRect.bottom >= height)) {
160 dirtyRect.set(0, 0, width, height);
161 }
162
163 renderer->initViewport(width, height);
164 renderer->setupFrameState(dirtyRect.left, dirtyRect.top,
165 dirtyRect.right, dirtyRect.bottom, !isBlend());
166
167 displayList->defer(deferredState, 0);
168}
169
170void Layer::flush() {
171 if (deferredList && !deferredList->isEmpty()) {
172 renderer->setViewport(layer.getWidth(), layer.getHeight());
173 renderer->prepareDirty(dirtyRect.left, dirtyRect.top, dirtyRect.right, dirtyRect.bottom,
174 !isBlend());
175
176 deferredList->flush(*renderer, dirtyRect);
177
178 renderer->finish();
179 renderer = NULL;
180
181 dirtyRect.setEmpty();
182 deferredList->clear();
183 }
184}
185
Chet Haased15ebf22012-09-05 11:40:29 -0700186}; // namespace uirenderer
187}; // namespace android