Layer.cpp revision 1206b9bba91f7ed899c5c87427cce725fe5aadfc
1/*
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
21#include "DisplayList.h"
22#include "DeferredDisplayList.h"
23#include "Layer.h"
24#include "LayerRenderer.h"
25#include "OpenGLRenderer.h"
26#include "Caches.h"
27
28namespace android {
29namespace uirenderer {
30
31Layer::Layer(const uint32_t layerWidth, const uint32_t layerHeight) {
32    mesh = NULL;
33    meshIndices = NULL;
34    meshElementCount = 0;
35    cacheable = true;
36    dirty = false;
37    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;
46    stencil = NULL;
47    debugDrawUpdate = false;
48    deferredList = NULL;
49    Caches::getInstance().resourceCache.incrementRefcount(this);
50}
51
52Layer::~Layer() {
53    if (colorFilter) Caches::getInstance().resourceCache.decrementRefcount(colorFilter);
54    removeFbo();
55    deleteTexture();
56
57    delete[] mesh;
58    delete[] meshIndices;
59    delete deferredList;
60}
61
62uint32_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
78    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
85    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) {
102        stencil->bind();
103        stencil->resize(desiredWidth, desiredHeight);
104
105        if (glGetError() != GL_NO_ERROR) {
106            setSize(oldWidth, oldHeight);
107            return false;
108        }
109    }
110
111    return true;
112}
113
114void Layer::removeFbo(bool flush) {
115    if (stencil) {
116        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
122        Caches::getInstance().renderBufferCache.put(stencil);
123        stencil = NULL;
124    }
125
126    if (fbo) {
127        if (flush) LayerRenderer::flushLayer(this);
128        // If put fails the cache will delete the FBO
129        Caches::getInstance().fboCache.put(fbo);
130        fbo = 0;
131    }
132}
133
134void 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
148void 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    deferredUpdateScheduled = false;
170}
171
172void Layer::flush() {
173    if (deferredList) {
174        renderer->setViewport(layer.getWidth(), layer.getHeight());
175        renderer->prepareDirty(dirtyRect.left, dirtyRect.top, dirtyRect.right, dirtyRect.bottom,
176                !isBlend());
177
178        deferredList->flush(*renderer, dirtyRect);
179
180        renderer->finish();
181        renderer = NULL;
182
183        dirtyRect.setEmpty();
184        displayList = NULL;
185    }
186}
187
188void Layer::render() {
189    renderer->setViewport(layer.getWidth(), layer.getHeight());
190    renderer->prepareDirty(dirtyRect.left, dirtyRect.top, dirtyRect.right, dirtyRect.bottom,
191            !isBlend());
192
193    renderer->drawDisplayList(displayList, dirtyRect, DisplayList::kReplayFlag_ClipChildren);
194
195    renderer->finish();
196    renderer = NULL;
197
198    dirtyRect.setEmpty();
199
200    deferredUpdateScheduled = false;
201    displayList = NULL;
202}
203
204}; // namespace uirenderer
205}; // namespace android
206