Chet Haase | d15ebf2 | 2012-09-05 11:40:29 -0700 | [diff] [blame] | 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 | |
Romain Guy | 96885eb | 2013-03-26 15:05:58 -0700 | [diff] [blame] | 21 | #include "DisplayList.h" |
| 22 | #include "DeferredDisplayList.h" |
Chet Haase | d15ebf2 | 2012-09-05 11:40:29 -0700 | [diff] [blame] | 23 | #include "Layer.h" |
Chet Haase | 98d3a64 | 2012-09-26 10:27:40 -0700 | [diff] [blame] | 24 | #include "LayerRenderer.h" |
Chet Haase | d15ebf2 | 2012-09-05 11:40:29 -0700 | [diff] [blame] | 25 | #include "OpenGLRenderer.h" |
| 26 | #include "Caches.h" |
| 27 | |
| 28 | namespace android { |
| 29 | namespace uirenderer { |
| 30 | |
Romain Guy | 8aa195d | 2013-06-04 18:00:09 -0700 | [diff] [blame] | 31 | Layer::Layer(const uint32_t layerWidth, const uint32_t layerHeight): |
| 32 | caches(Caches::getInstance()), texture(caches) { |
Chet Haase | 603f6de | 2012-09-14 15:31:25 -0700 | [diff] [blame] | 33 | mesh = NULL; |
Chet Haase | 603f6de | 2012-09-14 15:31:25 -0700 | [diff] [blame] | 34 | meshElementCount = 0; |
| 35 | cacheable = true; |
Romain Guy | 7c25aab | 2012-10-18 15:05:02 -0700 | [diff] [blame] | 36 | dirty = false; |
Chet Haase | 603f6de | 2012-09-14 15:31:25 -0700 | [diff] [blame] | 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; |
Romain Guy | 3bbacf2 | 2013-02-06 16:51:04 -0800 | [diff] [blame] | 46 | stencil = NULL; |
Romain Guy | 5bb3c73 | 2012-11-29 17:52:58 -0800 | [diff] [blame] | 47 | debugDrawUpdate = false; |
Chris Craik | 34416ea | 2013-04-15 16:08:28 -0700 | [diff] [blame] | 48 | hasDrawnSinceUpdate = false; |
Chris Craik | 9757ac0 | 2014-02-25 18:50:17 -0800 | [diff] [blame] | 49 | forceFilter = false; |
Romain Guy | 96885eb | 2013-03-26 15:05:58 -0700 | [diff] [blame] | 50 | deferredList = NULL; |
Romain Guy | 8aa195d | 2013-06-04 18:00:09 -0700 | [diff] [blame] | 51 | caches.resourceCache.incrementRefcount(this); |
Chet Haase | 603f6de | 2012-09-14 15:31:25 -0700 | [diff] [blame] | 52 | } |
| 53 | |
Chet Haase | d15ebf2 | 2012-09-05 11:40:29 -0700 | [diff] [blame] | 54 | Layer::~Layer() { |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 55 | SkSafeUnref(colorFilter); |
Chet Haase | 98d3a64 | 2012-09-26 10:27:40 -0700 | [diff] [blame] | 56 | removeFbo(); |
Romain Guy | 8a13749 | 2012-09-25 15:49:03 -0700 | [diff] [blame] | 57 | deleteTexture(); |
Romain Guy | 96885eb | 2013-03-26 15:05:58 -0700 | [diff] [blame] | 58 | |
| 59 | delete[] mesh; |
Romain Guy | 96885eb | 2013-03-26 15:05:58 -0700 | [diff] [blame] | 60 | delete deferredList; |
Romain Guy | 97dc917 | 2012-09-23 17:46:45 -0700 | [diff] [blame] | 61 | } |
| 62 | |
Romain Guy | 2055aba | 2013-01-18 16:42:51 -0800 | [diff] [blame] | 63 | uint32_t Layer::computeIdealWidth(uint32_t layerWidth) { |
| 64 | return uint32_t(ceilf(layerWidth / float(LAYER_SIZE)) * LAYER_SIZE); |
| 65 | } |
| 66 | |
| 67 | uint32_t Layer::computeIdealHeight(uint32_t layerHeight) { |
| 68 | return uint32_t(ceilf(layerHeight / float(LAYER_SIZE)) * LAYER_SIZE); |
| 69 | } |
| 70 | |
| 71 | bool Layer::resize(const uint32_t width, const uint32_t height) { |
| 72 | uint32_t desiredWidth = computeIdealWidth(width); |
| 73 | uint32_t desiredHeight = computeIdealWidth(height); |
| 74 | |
| 75 | if (desiredWidth <= getWidth() && desiredHeight <= getHeight()) { |
| 76 | return true; |
| 77 | } |
| 78 | |
Romain Guy | 8aa195d | 2013-06-04 18:00:09 -0700 | [diff] [blame] | 79 | const uint32_t maxTextureSize = caches.maxTextureSize; |
Romain Guy | ce4a7df | 2013-03-28 11:32:33 -0700 | [diff] [blame] | 80 | if (desiredWidth > maxTextureSize || desiredHeight > maxTextureSize) { |
| 81 | ALOGW("Layer exceeds max. dimensions supported by the GPU (%dx%d, max=%dx%d)", |
| 82 | desiredWidth, desiredHeight, maxTextureSize, maxTextureSize); |
| 83 | return false; |
| 84 | } |
| 85 | |
Romain Guy | 2055aba | 2013-01-18 16:42:51 -0800 | [diff] [blame] | 86 | uint32_t oldWidth = getWidth(); |
| 87 | uint32_t oldHeight = getHeight(); |
| 88 | |
| 89 | setSize(desiredWidth, desiredHeight); |
| 90 | |
| 91 | if (fbo) { |
Romain Guy | 8aa195d | 2013-06-04 18:00:09 -0700 | [diff] [blame] | 92 | caches.activeTexture(0); |
Romain Guy | 2055aba | 2013-01-18 16:42:51 -0800 | [diff] [blame] | 93 | bindTexture(); |
Romain Guy | 0908764 | 2013-04-04 12:27:54 -0700 | [diff] [blame] | 94 | allocateTexture(); |
Romain Guy | 2055aba | 2013-01-18 16:42:51 -0800 | [diff] [blame] | 95 | |
| 96 | if (glGetError() != GL_NO_ERROR) { |
| 97 | setSize(oldWidth, oldHeight); |
| 98 | return false; |
| 99 | } |
| 100 | } |
| 101 | |
| 102 | if (stencil) { |
Romain Guy | 3bbacf2 | 2013-02-06 16:51:04 -0800 | [diff] [blame] | 103 | stencil->bind(); |
| 104 | stencil->resize(desiredWidth, desiredHeight); |
Romain Guy | 2055aba | 2013-01-18 16:42:51 -0800 | [diff] [blame] | 105 | |
| 106 | if (glGetError() != GL_NO_ERROR) { |
| 107 | setSize(oldWidth, oldHeight); |
| 108 | return false; |
| 109 | } |
| 110 | } |
| 111 | |
| 112 | return true; |
| 113 | } |
| 114 | |
Romain Guy | 8ce0030 | 2013-01-15 18:51:42 -0800 | [diff] [blame] | 115 | void Layer::removeFbo(bool flush) { |
| 116 | if (stencil) { |
Romain Guy | 8ce0030 | 2013-01-15 18:51:42 -0800 | [diff] [blame] | 117 | GLuint previousFbo; |
| 118 | glGetIntegerv(GL_FRAMEBUFFER_BINDING, (GLint*) &previousFbo); |
| 119 | if (fbo != previousFbo) glBindFramebuffer(GL_FRAMEBUFFER, fbo); |
| 120 | glFramebufferRenderbuffer(GL_FRAMEBUFFER, GL_STENCIL_ATTACHMENT, GL_RENDERBUFFER, 0); |
| 121 | if (fbo != previousFbo) glBindFramebuffer(GL_FRAMEBUFFER, previousFbo); |
| 122 | |
Romain Guy | 8aa195d | 2013-06-04 18:00:09 -0700 | [diff] [blame] | 123 | caches.renderBufferCache.put(stencil); |
Romain Guy | 3bbacf2 | 2013-02-06 16:51:04 -0800 | [diff] [blame] | 124 | stencil = NULL; |
Romain Guy | 8ce0030 | 2013-01-15 18:51:42 -0800 | [diff] [blame] | 125 | } |
| 126 | |
Chet Haase | 98d3a64 | 2012-09-26 10:27:40 -0700 | [diff] [blame] | 127 | if (fbo) { |
Romain Guy | 8ce0030 | 2013-01-15 18:51:42 -0800 | [diff] [blame] | 128 | if (flush) LayerRenderer::flushLayer(this); |
| 129 | // If put fails the cache will delete the FBO |
Romain Guy | 8aa195d | 2013-06-04 18:00:09 -0700 | [diff] [blame] | 130 | caches.fboCache.put(fbo); |
Chet Haase | 98d3a64 | 2012-09-26 10:27:40 -0700 | [diff] [blame] | 131 | fbo = 0; |
Dave Burke | 56257af | 2012-09-25 20:30:09 -0700 | [diff] [blame] | 132 | } |
| 133 | } |
| 134 | |
Derek Sollenberger | 674554f | 2014-02-19 16:47:32 +0000 | [diff] [blame] | 135 | void Layer::setPaint(const SkPaint* paint) { |
Chet Haase | d15ebf2 | 2012-09-05 11:40:29 -0700 | [diff] [blame] | 136 | OpenGLRenderer::getAlphaAndModeDirect(paint, &alpha, &mode); |
Derek Sollenberger | 674554f | 2014-02-19 16:47:32 +0000 | [diff] [blame] | 137 | setColorFilter((paint) ? paint->getColorFilter() : NULL); |
Chet Haase | d15ebf2 | 2012-09-05 11:40:29 -0700 | [diff] [blame] | 138 | } |
| 139 | |
Derek Sollenberger | 76d3a1b | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 140 | void Layer::setColorFilter(SkColorFilter* filter) { |
| 141 | SkRefCnt_SafeAssign(colorFilter, filter); |
Romain Guy | 8aa195d | 2013-06-04 18:00:09 -0700 | [diff] [blame] | 142 | } |
| 143 | |
| 144 | void Layer::bindTexture() const { |
| 145 | if (texture.id) { |
| 146 | caches.bindTexture(renderTarget, texture.id); |
| 147 | } |
| 148 | } |
| 149 | |
| 150 | void Layer::bindStencilRenderBuffer() const { |
| 151 | if (stencil) { |
| 152 | stencil->bind(); |
| 153 | } |
| 154 | } |
| 155 | |
| 156 | void Layer::generateTexture() { |
| 157 | if (!texture.id) { |
| 158 | glGenTextures(1, &texture.id); |
| 159 | } |
| 160 | } |
| 161 | |
| 162 | void Layer::deleteTexture() { |
| 163 | if (texture.id) { |
Romain Guy | be1b127 | 2013-06-06 14:02:54 -0700 | [diff] [blame] | 164 | texture.deleteTexture(); |
Romain Guy | 8aa195d | 2013-06-04 18:00:09 -0700 | [diff] [blame] | 165 | texture.id = 0; |
| 166 | } |
| 167 | } |
| 168 | |
| 169 | void Layer::clearTexture() { |
| 170 | texture.id = 0; |
| 171 | } |
| 172 | |
| 173 | void Layer::allocateTexture() { |
| 174 | #if DEBUG_LAYERS |
| 175 | ALOGD(" Allocate layer: %dx%d", getWidth(), getHeight()); |
| 176 | #endif |
| 177 | if (texture.id) { |
| 178 | glPixelStorei(GL_UNPACK_ALIGNMENT, 4); |
| 179 | glTexImage2D(renderTarget, 0, GL_RGBA, getWidth(), getHeight(), 0, |
| 180 | GL_RGBA, GL_UNSIGNED_BYTE, NULL); |
Chet Haase | d15ebf2 | 2012-09-05 11:40:29 -0700 | [diff] [blame] | 181 | } |
| 182 | } |
| 183 | |
Romain Guy | 96885eb | 2013-03-26 15:05:58 -0700 | [diff] [blame] | 184 | void Layer::defer() { |
Romain Guy | 96885eb | 2013-03-26 15:05:58 -0700 | [diff] [blame] | 185 | const float width = layer.getWidth(); |
| 186 | const float height = layer.getHeight(); |
| 187 | |
| 188 | if (dirtyRect.isEmpty() || (dirtyRect.left <= 0 && dirtyRect.top <= 0 && |
| 189 | dirtyRect.right >= width && dirtyRect.bottom >= height)) { |
| 190 | dirtyRect.set(0, 0, width, height); |
| 191 | } |
| 192 | |
Chris Craik | f57776b | 2013-10-25 18:30:17 -0700 | [diff] [blame] | 193 | delete deferredList; |
| 194 | deferredList = new DeferredDisplayList(dirtyRect); |
| 195 | |
Chris Craik | 28ce94a | 2013-05-31 11:38:03 -0700 | [diff] [blame] | 196 | DeferStateStruct deferredState(*deferredList, *renderer, |
John Reck | e18264b | 2014-03-12 13:56:30 -0700 | [diff] [blame^] | 197 | RenderNode::kReplayFlag_ClipChildren); |
Chris Craik | 28ce94a | 2013-05-31 11:38:03 -0700 | [diff] [blame] | 198 | |
Romain Guy | 96885eb | 2013-03-26 15:05:58 -0700 | [diff] [blame] | 199 | renderer->initViewport(width, height); |
| 200 | renderer->setupFrameState(dirtyRect.left, dirtyRect.top, |
| 201 | dirtyRect.right, dirtyRect.bottom, !isBlend()); |
| 202 | |
Chris Craik | f57776b | 2013-10-25 18:30:17 -0700 | [diff] [blame] | 203 | displayList->computeOrdering(); |
Romain Guy | 96885eb | 2013-03-26 15:05:58 -0700 | [diff] [blame] | 204 | displayList->defer(deferredState, 0); |
Romain Guy | 02b49b7 | 2013-03-29 12:37:16 -0700 | [diff] [blame] | 205 | |
| 206 | deferredUpdateScheduled = false; |
Romain Guy | 96885eb | 2013-03-26 15:05:58 -0700 | [diff] [blame] | 207 | } |
| 208 | |
Romain Guy | e93482f | 2013-06-17 13:14:51 -0700 | [diff] [blame] | 209 | void Layer::cancelDefer() { |
| 210 | renderer = NULL; |
| 211 | displayList = NULL; |
| 212 | deferredUpdateScheduled = false; |
| 213 | if (deferredList) { |
| 214 | delete deferredList; |
| 215 | deferredList = NULL; |
| 216 | } |
| 217 | } |
| 218 | |
Romain Guy | 96885eb | 2013-03-26 15:05:58 -0700 | [diff] [blame] | 219 | void Layer::flush() { |
Chris Craik | 8c6e17c | 2013-06-17 13:02:12 -0700 | [diff] [blame] | 220 | // renderer is checked as layer may be destroyed/put in layer cache with flush scheduled |
| 221 | if (deferredList && renderer) { |
Romain Guy | 96885eb | 2013-03-26 15:05:58 -0700 | [diff] [blame] | 222 | renderer->setViewport(layer.getWidth(), layer.getHeight()); |
| 223 | renderer->prepareDirty(dirtyRect.left, dirtyRect.top, dirtyRect.right, dirtyRect.bottom, |
| 224 | !isBlend()); |
| 225 | |
| 226 | deferredList->flush(*renderer, dirtyRect); |
| 227 | |
| 228 | renderer->finish(); |
| 229 | renderer = NULL; |
| 230 | |
| 231 | dirtyRect.setEmpty(); |
Chris Craik | 1206b9b | 2013-04-04 14:46:24 -0700 | [diff] [blame] | 232 | displayList = NULL; |
Romain Guy | 96885eb | 2013-03-26 15:05:58 -0700 | [diff] [blame] | 233 | } |
| 234 | } |
| 235 | |
Romain Guy | 02b49b7 | 2013-03-29 12:37:16 -0700 | [diff] [blame] | 236 | void Layer::render() { |
| 237 | renderer->setViewport(layer.getWidth(), layer.getHeight()); |
| 238 | renderer->prepareDirty(dirtyRect.left, dirtyRect.top, dirtyRect.right, dirtyRect.bottom, |
| 239 | !isBlend()); |
| 240 | |
John Reck | e18264b | 2014-03-12 13:56:30 -0700 | [diff] [blame^] | 241 | renderer->drawDisplayList(displayList, dirtyRect, RenderNode::kReplayFlag_ClipChildren); |
Romain Guy | 02b49b7 | 2013-03-29 12:37:16 -0700 | [diff] [blame] | 242 | |
| 243 | renderer->finish(); |
| 244 | renderer = NULL; |
| 245 | |
| 246 | dirtyRect.setEmpty(); |
| 247 | |
| 248 | deferredUpdateScheduled = false; |
| 249 | displayList = NULL; |
| 250 | } |
| 251 | |
Chet Haase | d15ebf2 | 2012-09-05 11:40:29 -0700 | [diff] [blame] | 252 | }; // namespace uirenderer |
| 253 | }; // namespace android |