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