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