John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2014 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 ATRACE_TAG ATRACE_TAG_VIEW |
Chris Craik | 80d4902 | 2014-06-20 15:03:43 -0700 | [diff] [blame] | 18 | #define LOG_TAG "OpenGLRenderer" |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 19 | |
| 20 | #include "RenderNode.h" |
| 21 | |
John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 22 | #include <algorithm> |
John Reck | c25e506 | 2014-06-18 14:21:29 -0700 | [diff] [blame] | 23 | #include <string> |
John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 24 | |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 25 | #include <SkCanvas.h> |
| 26 | #include <algorithm> |
| 27 | |
| 28 | #include <utils/Trace.h> |
| 29 | |
John Reck | e4267ea | 2014-06-03 15:53:15 -0700 | [diff] [blame] | 30 | #include "DamageAccumulator.h" |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 31 | #include "Debug.h" |
| 32 | #include "DisplayListOp.h" |
| 33 | #include "DisplayListLogBuffer.h" |
John Reck | 25fbb3f | 2014-06-12 13:46:45 -0700 | [diff] [blame] | 34 | #include "LayerRenderer.h" |
| 35 | #include "OpenGLRenderer.h" |
Chris Craik | e0bb87d | 2014-04-22 17:55:41 -0700 | [diff] [blame] | 36 | #include "utils/MathUtils.h" |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 37 | |
| 38 | namespace android { |
| 39 | namespace uirenderer { |
| 40 | |
| 41 | void RenderNode::outputLogBuffer(int fd) { |
| 42 | DisplayListLogBuffer& logBuffer = DisplayListLogBuffer::getInstance(); |
| 43 | if (logBuffer.isEmpty()) { |
| 44 | return; |
| 45 | } |
| 46 | |
| 47 | FILE *file = fdopen(fd, "a"); |
| 48 | |
| 49 | fprintf(file, "\nRecent DisplayList operations\n"); |
| 50 | logBuffer.outputCommands(file); |
| 51 | |
| 52 | String8 cachesLog; |
| 53 | Caches::getInstance().dumpMemoryUsage(cachesLog); |
| 54 | fprintf(file, "\nCaches:\n%s", cachesLog.string()); |
| 55 | fprintf(file, "\n"); |
| 56 | |
| 57 | fflush(file); |
| 58 | } |
| 59 | |
John Reck | 8de65a8 | 2014-04-09 15:23:38 -0700 | [diff] [blame] | 60 | RenderNode::RenderNode() |
John Reck | ff941dc | 2014-05-14 16:34:14 -0700 | [diff] [blame] | 61 | : mDirtyPropertyFields(0) |
John Reck | 8de65a8 | 2014-04-09 15:23:38 -0700 | [diff] [blame] | 62 | , mNeedsDisplayListDataSync(false) |
| 63 | , mDisplayListData(0) |
John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 64 | , mStagingDisplayListData(0) |
John Reck | 68bfe0a | 2014-06-24 15:34:58 -0700 | [diff] [blame] | 65 | , mAnimatorManager(*this) |
John Reck | dcba672 | 2014-07-08 13:59:49 -0700 | [diff] [blame^] | 66 | , mLayer(0) |
| 67 | , mParentCount(0) { |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 68 | } |
| 69 | |
| 70 | RenderNode::~RenderNode() { |
John Reck | dcba672 | 2014-07-08 13:59:49 -0700 | [diff] [blame^] | 71 | deleteDisplayListData(); |
John Reck | 8de65a8 | 2014-04-09 15:23:38 -0700 | [diff] [blame] | 72 | delete mStagingDisplayListData; |
John Reck | 25fbb3f | 2014-06-12 13:46:45 -0700 | [diff] [blame] | 73 | LayerRenderer::destroyLayerDeferred(mLayer); |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 74 | } |
| 75 | |
John Reck | 8de65a8 | 2014-04-09 15:23:38 -0700 | [diff] [blame] | 76 | void RenderNode::setStagingDisplayList(DisplayListData* data) { |
| 77 | mNeedsDisplayListDataSync = true; |
| 78 | delete mStagingDisplayListData; |
| 79 | mStagingDisplayListData = data; |
| 80 | if (mStagingDisplayListData) { |
| 81 | Caches::getInstance().registerFunctors(mStagingDisplayListData->functorCount); |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 82 | } |
| 83 | } |
| 84 | |
| 85 | /** |
| 86 | * This function is a simplified version of replay(), where we simply retrieve and log the |
| 87 | * display list. This function should remain in sync with the replay() function. |
| 88 | */ |
| 89 | void RenderNode::output(uint32_t level) { |
| 90 | ALOGD("%*sStart display list (%p, %s, render=%d)", (level - 1) * 2, "", this, |
Chris Craik | 3f085429 | 2014-04-15 16:18:08 -0700 | [diff] [blame] | 91 | getName(), isRenderable()); |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 92 | ALOGD("%*s%s %d", level * 2, "", "Save", |
| 93 | SkCanvas::kMatrix_SaveFlag | SkCanvas::kClip_SaveFlag); |
| 94 | |
John Reck | d0a0b2a | 2014-03-20 16:28:56 -0700 | [diff] [blame] | 95 | properties().debugOutputProperties(level); |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 96 | int flags = DisplayListOp::kOpLogFlag_Recurse; |
| 97 | for (unsigned int i = 0; i < mDisplayListData->displayListOps.size(); i++) { |
| 98 | mDisplayListData->displayListOps[i]->output(level, flags); |
| 99 | } |
| 100 | |
Chris Craik | 3f085429 | 2014-04-15 16:18:08 -0700 | [diff] [blame] | 101 | ALOGD("%*sDone (%p, %s)", (level - 1) * 2, "", this, getName()); |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 102 | } |
| 103 | |
John Reck | fe5e7b7 | 2014-05-23 17:42:28 -0700 | [diff] [blame] | 104 | int RenderNode::getDebugSize() { |
| 105 | int size = sizeof(RenderNode); |
| 106 | if (mStagingDisplayListData) { |
| 107 | size += mStagingDisplayListData->allocator.usedSize(); |
| 108 | } |
| 109 | if (mDisplayListData && mDisplayListData != mStagingDisplayListData) { |
| 110 | size += mDisplayListData->allocator.usedSize(); |
| 111 | } |
| 112 | return size; |
| 113 | } |
| 114 | |
John Reck | f4198b7 | 2014-04-09 17:00:04 -0700 | [diff] [blame] | 115 | void RenderNode::prepareTree(TreeInfo& info) { |
| 116 | ATRACE_CALL(); |
| 117 | |
| 118 | prepareTreeImpl(info); |
| 119 | } |
| 120 | |
John Reck | 68bfe0a | 2014-06-24 15:34:58 -0700 | [diff] [blame] | 121 | void RenderNode::addAnimator(const sp<BaseRenderNodeAnimator>& animator) { |
| 122 | mAnimatorManager.addAnimator(animator); |
| 123 | } |
| 124 | |
John Reck | e4267ea | 2014-06-03 15:53:15 -0700 | [diff] [blame] | 125 | void RenderNode::damageSelf(TreeInfo& info) { |
John Reck | ce9f308 | 2014-06-17 16:18:09 -0700 | [diff] [blame] | 126 | if (isRenderable()) { |
John Reck | 293e868 | 2014-06-17 10:34:02 -0700 | [diff] [blame] | 127 | if (properties().getClipDamageToBounds()) { |
John Reck | a447d29 | 2014-06-11 18:39:44 -0700 | [diff] [blame] | 128 | info.damageAccumulator->dirty(0, 0, properties().getWidth(), properties().getHeight()); |
| 129 | } else { |
| 130 | // Hope this is big enough? |
| 131 | // TODO: Get this from the display list ops or something |
| 132 | info.damageAccumulator->dirty(INT_MIN, INT_MIN, INT_MAX, INT_MAX); |
| 133 | } |
John Reck | e4267ea | 2014-06-03 15:53:15 -0700 | [diff] [blame] | 134 | } |
| 135 | } |
| 136 | |
John Reck | 25fbb3f | 2014-06-12 13:46:45 -0700 | [diff] [blame] | 137 | void RenderNode::prepareLayer(TreeInfo& info) { |
| 138 | LayerType layerType = properties().layerProperties().type(); |
| 139 | if (CC_UNLIKELY(layerType == kLayerTypeRenderLayer)) { |
| 140 | // We push a null transform here as we don't care what the existing dirty |
| 141 | // area is, only what our display list dirty is as well as our children's |
| 142 | // dirty area |
| 143 | info.damageAccumulator->pushNullTransform(); |
| 144 | } |
| 145 | } |
| 146 | |
| 147 | void RenderNode::pushLayerUpdate(TreeInfo& info) { |
| 148 | LayerType layerType = properties().layerProperties().type(); |
| 149 | // If we are not a layer OR we cannot be rendered (eg, view was detached) |
| 150 | // we need to destroy any Layers we may have had previously |
| 151 | if (CC_LIKELY(layerType != kLayerTypeRenderLayer) || CC_UNLIKELY(!isRenderable())) { |
| 152 | if (layerType == kLayerTypeRenderLayer) { |
| 153 | info.damageAccumulator->popTransform(); |
| 154 | } |
| 155 | if (CC_UNLIKELY(mLayer)) { |
| 156 | LayerRenderer::destroyLayer(mLayer); |
| 157 | mLayer = NULL; |
| 158 | } |
| 159 | return; |
| 160 | } |
| 161 | |
| 162 | if (!mLayer) { |
John Reck | 3b20251 | 2014-06-23 13:13:08 -0700 | [diff] [blame] | 163 | mLayer = LayerRenderer::createRenderLayer(info.renderState, getWidth(), getHeight()); |
John Reck | 25fbb3f | 2014-06-12 13:46:45 -0700 | [diff] [blame] | 164 | applyLayerPropertiesToLayer(info); |
| 165 | damageSelf(info); |
| 166 | } else if (mLayer->layer.getWidth() != getWidth() || mLayer->layer.getHeight() != getHeight()) { |
John Reck | c25e506 | 2014-06-18 14:21:29 -0700 | [diff] [blame] | 167 | if (!LayerRenderer::resizeLayer(mLayer, getWidth(), getHeight())) { |
| 168 | LayerRenderer::destroyLayer(mLayer); |
| 169 | mLayer = 0; |
| 170 | } |
John Reck | 25fbb3f | 2014-06-12 13:46:45 -0700 | [diff] [blame] | 171 | damageSelf(info); |
| 172 | } |
| 173 | |
| 174 | SkRect dirty; |
| 175 | info.damageAccumulator->peekAtDirty(&dirty); |
| 176 | info.damageAccumulator->popTransform(); |
| 177 | |
John Reck | c25e506 | 2014-06-18 14:21:29 -0700 | [diff] [blame] | 178 | if (!mLayer) { |
| 179 | if (info.errorHandler) { |
| 180 | std::string msg = "Unable to create layer for "; |
| 181 | msg += getName(); |
| 182 | info.errorHandler->onError(msg); |
| 183 | } |
| 184 | return; |
| 185 | } |
| 186 | |
John Reck | 25fbb3f | 2014-06-12 13:46:45 -0700 | [diff] [blame] | 187 | if (!dirty.isEmpty()) { |
| 188 | mLayer->updateDeferred(this, dirty.fLeft, dirty.fTop, dirty.fRight, dirty.fBottom); |
| 189 | } |
| 190 | // This is not inside the above if because we may have called |
| 191 | // updateDeferred on a previous prepare pass that didn't have a renderer |
| 192 | if (info.renderer && mLayer->deferredUpdateScheduled) { |
| 193 | info.renderer->pushLayerUpdate(mLayer); |
| 194 | } |
| 195 | } |
| 196 | |
John Reck | e4267ea | 2014-06-03 15:53:15 -0700 | [diff] [blame] | 197 | void RenderNode::prepareTreeImpl(TreeInfo& info) { |
John Reck | a447d29 | 2014-06-11 18:39:44 -0700 | [diff] [blame] | 198 | info.damageAccumulator->pushTransform(this); |
John Reck | f47a594 | 2014-06-30 16:20:04 -0700 | [diff] [blame] | 199 | |
John Reck | dcba672 | 2014-07-08 13:59:49 -0700 | [diff] [blame^] | 200 | if (info.mode == TreeInfo::MODE_FULL) { |
John Reck | 25fbb3f | 2014-06-12 13:46:45 -0700 | [diff] [blame] | 201 | pushStagingPropertiesChanges(info); |
John Reck | e45b1fd | 2014-04-15 09:50:16 -0700 | [diff] [blame] | 202 | } |
John Reck | dcba672 | 2014-07-08 13:59:49 -0700 | [diff] [blame^] | 203 | mAnimatorManager.animate(info); |
John Reck | 25fbb3f | 2014-06-12 13:46:45 -0700 | [diff] [blame] | 204 | prepareLayer(info); |
John Reck | dcba672 | 2014-07-08 13:59:49 -0700 | [diff] [blame^] | 205 | if (info.mode == TreeInfo::MODE_FULL) { |
John Reck | 25fbb3f | 2014-06-12 13:46:45 -0700 | [diff] [blame] | 206 | pushStagingDisplayListChanges(info); |
| 207 | } |
John Reck | f4198b7 | 2014-04-09 17:00:04 -0700 | [diff] [blame] | 208 | prepareSubTree(info, mDisplayListData); |
John Reck | 25fbb3f | 2014-06-12 13:46:45 -0700 | [diff] [blame] | 209 | pushLayerUpdate(info); |
| 210 | |
John Reck | a447d29 | 2014-06-11 18:39:44 -0700 | [diff] [blame] | 211 | info.damageAccumulator->popTransform(); |
John Reck | f4198b7 | 2014-04-09 17:00:04 -0700 | [diff] [blame] | 212 | } |
| 213 | |
John Reck | 25fbb3f | 2014-06-12 13:46:45 -0700 | [diff] [blame] | 214 | void RenderNode::pushStagingPropertiesChanges(TreeInfo& info) { |
John Reck | ff941dc | 2014-05-14 16:34:14 -0700 | [diff] [blame] | 215 | // Push the animators first so that setupStartValueIfNecessary() is called |
| 216 | // before properties() is trampled by stagingProperties(), as they are |
| 217 | // required by some animators. |
John Reck | 68bfe0a | 2014-06-24 15:34:58 -0700 | [diff] [blame] | 218 | mAnimatorManager.pushStaging(info); |
John Reck | ff941dc | 2014-05-14 16:34:14 -0700 | [diff] [blame] | 219 | if (mDirtyPropertyFields) { |
| 220 | mDirtyPropertyFields = 0; |
John Reck | e4267ea | 2014-06-03 15:53:15 -0700 | [diff] [blame] | 221 | damageSelf(info); |
John Reck | a447d29 | 2014-06-11 18:39:44 -0700 | [diff] [blame] | 222 | info.damageAccumulator->popTransform(); |
John Reck | ff941dc | 2014-05-14 16:34:14 -0700 | [diff] [blame] | 223 | mProperties = mStagingProperties; |
John Reck | 25fbb3f | 2014-06-12 13:46:45 -0700 | [diff] [blame] | 224 | applyLayerPropertiesToLayer(info); |
John Reck | e4267ea | 2014-06-03 15:53:15 -0700 | [diff] [blame] | 225 | // We could try to be clever and only re-damage if the matrix changed. |
| 226 | // However, we don't need to worry about that. The cost of over-damaging |
| 227 | // here is only going to be a single additional map rect of this node |
| 228 | // plus a rect join(). The parent's transform (and up) will only be |
| 229 | // performed once. |
John Reck | a447d29 | 2014-06-11 18:39:44 -0700 | [diff] [blame] | 230 | info.damageAccumulator->pushTransform(this); |
John Reck | e4267ea | 2014-06-03 15:53:15 -0700 | [diff] [blame] | 231 | damageSelf(info); |
John Reck | ff941dc | 2014-05-14 16:34:14 -0700 | [diff] [blame] | 232 | } |
John Reck | 25fbb3f | 2014-06-12 13:46:45 -0700 | [diff] [blame] | 233 | } |
| 234 | |
| 235 | void RenderNode::applyLayerPropertiesToLayer(TreeInfo& info) { |
| 236 | if (CC_LIKELY(!mLayer)) return; |
| 237 | |
| 238 | const LayerProperties& props = properties().layerProperties(); |
| 239 | mLayer->setAlpha(props.alpha(), props.xferMode()); |
| 240 | mLayer->setColorFilter(props.colorFilter()); |
| 241 | mLayer->setBlend(props.needsBlending()); |
| 242 | } |
| 243 | |
| 244 | void RenderNode::pushStagingDisplayListChanges(TreeInfo& info) { |
John Reck | 8de65a8 | 2014-04-09 15:23:38 -0700 | [diff] [blame] | 245 | if (mNeedsDisplayListDataSync) { |
| 246 | mNeedsDisplayListDataSync = false; |
John Reck | dcba672 | 2014-07-08 13:59:49 -0700 | [diff] [blame^] | 247 | // Make sure we inc first so that we don't fluctuate between 0 and 1, |
| 248 | // which would thrash the layer cache |
| 249 | if (mStagingDisplayListData) { |
| 250 | for (size_t i = 0; i < mStagingDisplayListData->children().size(); i++) { |
| 251 | mStagingDisplayListData->children()[i]->mRenderNode->incParentRefCount(); |
| 252 | } |
| 253 | } |
| 254 | deleteDisplayListData(); |
John Reck | 8de65a8 | 2014-04-09 15:23:38 -0700 | [diff] [blame] | 255 | mDisplayListData = mStagingDisplayListData; |
John Reck | dcba672 | 2014-07-08 13:59:49 -0700 | [diff] [blame^] | 256 | mStagingDisplayListData = NULL; |
John Reck | e4267ea | 2014-06-03 15:53:15 -0700 | [diff] [blame] | 257 | damageSelf(info); |
John Reck | 8de65a8 | 2014-04-09 15:23:38 -0700 | [diff] [blame] | 258 | } |
John Reck | 8de65a8 | 2014-04-09 15:23:38 -0700 | [diff] [blame] | 259 | } |
| 260 | |
John Reck | dcba672 | 2014-07-08 13:59:49 -0700 | [diff] [blame^] | 261 | void RenderNode::deleteDisplayListData() { |
| 262 | if (mDisplayListData) { |
| 263 | for (size_t i = 0; i < mDisplayListData->children().size(); i++) { |
| 264 | mDisplayListData->children()[i]->mRenderNode->decParentRefCount(); |
| 265 | } |
| 266 | } |
| 267 | delete mDisplayListData; |
| 268 | mDisplayListData = NULL; |
| 269 | } |
| 270 | |
John Reck | f4198b7 | 2014-04-09 17:00:04 -0700 | [diff] [blame] | 271 | void RenderNode::prepareSubTree(TreeInfo& info, DisplayListData* subtree) { |
John Reck | 8de65a8 | 2014-04-09 15:23:38 -0700 | [diff] [blame] | 272 | if (subtree) { |
John Reck | 860d155 | 2014-04-11 19:15:05 -0700 | [diff] [blame] | 273 | TextureCache& cache = Caches::getInstance().textureCache; |
John Reck | f9be779 | 2014-05-02 18:21:16 -0700 | [diff] [blame] | 274 | info.out.hasFunctors |= subtree->functorCount; |
John Reck | 860d155 | 2014-04-11 19:15:05 -0700 | [diff] [blame] | 275 | // TODO: Fix ownedBitmapResources to not require disabling prepareTextures |
| 276 | // and thus falling out of async drawing path. |
| 277 | if (subtree->ownedBitmapResources.size()) { |
| 278 | info.prepareTextures = false; |
| 279 | } |
| 280 | for (size_t i = 0; info.prepareTextures && i < subtree->bitmapResources.size(); i++) { |
| 281 | info.prepareTextures = cache.prefetchAndMarkInUse(subtree->bitmapResources[i]); |
John Reck | f4198b7 | 2014-04-09 17:00:04 -0700 | [diff] [blame] | 282 | } |
John Reck | 8de65a8 | 2014-04-09 15:23:38 -0700 | [diff] [blame] | 283 | for (size_t i = 0; i < subtree->children().size(); i++) { |
Chris Craik | a7090e0 | 2014-06-20 16:01:00 -0700 | [diff] [blame] | 284 | DrawRenderNodeOp* op = subtree->children()[i]; |
| 285 | RenderNode* childNode = op->mRenderNode; |
John Reck | a447d29 | 2014-06-11 18:39:44 -0700 | [diff] [blame] | 286 | info.damageAccumulator->pushTransform(&op->mTransformFromParent); |
John Reck | f4198b7 | 2014-04-09 17:00:04 -0700 | [diff] [blame] | 287 | childNode->prepareTreeImpl(info); |
John Reck | a447d29 | 2014-06-11 18:39:44 -0700 | [diff] [blame] | 288 | info.damageAccumulator->popTransform(); |
John Reck | 5bf11bb | 2014-03-25 10:22:09 -0700 | [diff] [blame] | 289 | } |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 290 | } |
| 291 | } |
| 292 | |
John Reck | dcba672 | 2014-07-08 13:59:49 -0700 | [diff] [blame^] | 293 | void RenderNode::destroyHardwareResources() { |
| 294 | if (mLayer) { |
| 295 | LayerRenderer::destroyLayer(mLayer); |
| 296 | mLayer = NULL; |
| 297 | } |
| 298 | if (mDisplayListData) { |
| 299 | for (size_t i = 0; i < mDisplayListData->children().size(); i++) { |
| 300 | mDisplayListData->children()[i]->mRenderNode->destroyHardwareResources(); |
| 301 | } |
| 302 | if (mNeedsDisplayListDataSync) { |
| 303 | // Next prepare tree we are going to push a new display list, so we can |
| 304 | // drop our current one now |
| 305 | deleteDisplayListData(); |
| 306 | } |
| 307 | } |
| 308 | } |
| 309 | |
| 310 | void RenderNode::decParentRefCount() { |
| 311 | LOG_ALWAYS_FATAL_IF(!mParentCount, "already 0!"); |
| 312 | mParentCount--; |
| 313 | if (!mParentCount) { |
| 314 | // If a child of ours is being attached to our parent then this will incorrectly |
| 315 | // destroy its hardware resources. However, this situation is highly unlikely |
| 316 | // and the failure is "just" that the layer is re-created, so this should |
| 317 | // be safe enough |
| 318 | destroyHardwareResources(); |
| 319 | } |
| 320 | } |
| 321 | |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 322 | /* |
| 323 | * For property operations, we pass a savecount of 0, since the operations aren't part of the |
| 324 | * displaylist, and thus don't have to compensate for the record-time/playback-time discrepancy in |
John Reck | d0a0b2a | 2014-03-20 16:28:56 -0700 | [diff] [blame] | 325 | * base saveCount (i.e., how RestoreToCount uses saveCount + properties().getCount()) |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 326 | */ |
| 327 | #define PROPERTY_SAVECOUNT 0 |
| 328 | |
| 329 | template <class T> |
Chris Craik | b265e2c | 2014-03-27 15:50:09 -0700 | [diff] [blame] | 330 | void RenderNode::setViewProperties(OpenGLRenderer& renderer, T& handler) { |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 331 | #if DEBUG_DISPLAY_LIST |
Chris Craik | b265e2c | 2014-03-27 15:50:09 -0700 | [diff] [blame] | 332 | properties().debugOutputProperties(handler.level() + 1); |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 333 | #endif |
John Reck | d0a0b2a | 2014-03-20 16:28:56 -0700 | [diff] [blame] | 334 | if (properties().getLeft() != 0 || properties().getTop() != 0) { |
| 335 | renderer.translate(properties().getLeft(), properties().getTop()); |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 336 | } |
John Reck | d0a0b2a | 2014-03-20 16:28:56 -0700 | [diff] [blame] | 337 | if (properties().getStaticMatrix()) { |
Derek Sollenberger | 1390882 | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 338 | renderer.concatMatrix(*properties().getStaticMatrix()); |
John Reck | d0a0b2a | 2014-03-20 16:28:56 -0700 | [diff] [blame] | 339 | } else if (properties().getAnimationMatrix()) { |
Derek Sollenberger | 1390882 | 2013-12-10 12:28:58 -0500 | [diff] [blame] | 340 | renderer.concatMatrix(*properties().getAnimationMatrix()); |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 341 | } |
John Reck | f7483e3 | 2014-04-11 08:54:47 -0700 | [diff] [blame] | 342 | if (properties().hasTransformMatrix()) { |
| 343 | if (properties().isTransformTranslateOnly()) { |
John Reck | d0a0b2a | 2014-03-20 16:28:56 -0700 | [diff] [blame] | 344 | renderer.translate(properties().getTranslationX(), properties().getTranslationY()); |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 345 | } else { |
John Reck | d0a0b2a | 2014-03-20 16:28:56 -0700 | [diff] [blame] | 346 | renderer.concatMatrix(*properties().getTransformMatrix()); |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 347 | } |
| 348 | } |
John Reck | 25fbb3f | 2014-06-12 13:46:45 -0700 | [diff] [blame] | 349 | const bool isLayer = properties().layerProperties().type() != kLayerTypeNone; |
| 350 | bool clipToBoundsNeeded = isLayer ? false : properties().getClipToBounds(); |
John Reck | d0a0b2a | 2014-03-20 16:28:56 -0700 | [diff] [blame] | 351 | if (properties().getAlpha() < 1) { |
John Reck | 25fbb3f | 2014-06-12 13:46:45 -0700 | [diff] [blame] | 352 | if (isLayer) { |
John Reck | d0a0b2a | 2014-03-20 16:28:56 -0700 | [diff] [blame] | 353 | renderer.setOverrideLayerAlpha(properties().getAlpha()); |
| 354 | } else if (!properties().getHasOverlappingRendering()) { |
| 355 | renderer.scaleAlpha(properties().getAlpha()); |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 356 | } else { |
| 357 | // TODO: should be able to store the size of a DL at record time and not |
| 358 | // have to pass it into this call. In fact, this information might be in the |
| 359 | // location/size info that we store with the new native transform data. |
| 360 | int saveFlags = SkCanvas::kHasAlphaLayer_SaveFlag; |
| 361 | if (clipToBoundsNeeded) { |
| 362 | saveFlags |= SkCanvas::kClipToLayer_SaveFlag; |
| 363 | clipToBoundsNeeded = false; // clipping done by saveLayer |
| 364 | } |
| 365 | |
| 366 | SaveLayerOp* op = new (handler.allocator()) SaveLayerOp( |
Chris Craik | 8c271ca | 2014-03-25 10:33:01 -0700 | [diff] [blame] | 367 | 0, 0, properties().getWidth(), properties().getHeight(), |
| 368 | properties().getAlpha() * 255, saveFlags); |
John Reck | d0a0b2a | 2014-03-20 16:28:56 -0700 | [diff] [blame] | 369 | handler(op, PROPERTY_SAVECOUNT, properties().getClipToBounds()); |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 370 | } |
| 371 | } |
| 372 | if (clipToBoundsNeeded) { |
Chris Craik | 8c271ca | 2014-03-25 10:33:01 -0700 | [diff] [blame] | 373 | ClipRectOp* op = new (handler.allocator()) ClipRectOp( |
| 374 | 0, 0, properties().getWidth(), properties().getHeight(), SkRegion::kIntersect_Op); |
John Reck | d0a0b2a | 2014-03-20 16:28:56 -0700 | [diff] [blame] | 375 | handler(op, PROPERTY_SAVECOUNT, properties().getClipToBounds()); |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 376 | } |
Chris Craik | 8c271ca | 2014-03-25 10:33:01 -0700 | [diff] [blame] | 377 | |
| 378 | if (CC_UNLIKELY(properties().hasClippingPath())) { |
Chris Craik | 2bcad17 | 2014-05-14 18:11:23 -0700 | [diff] [blame] | 379 | ClipPathOp* op = new (handler.allocator()) ClipPathOp( |
| 380 | properties().getClippingPath(), properties().getClippingPathOp()); |
John Reck | d0a0b2a | 2014-03-20 16:28:56 -0700 | [diff] [blame] | 381 | handler(op, PROPERTY_SAVECOUNT, properties().getClipToBounds()); |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 382 | } |
| 383 | } |
| 384 | |
| 385 | /** |
| 386 | * Apply property-based transformations to input matrix |
| 387 | * |
| 388 | * If true3dTransform is set to true, the transform applied to the input matrix will use true 4x4 |
| 389 | * matrix computation instead of the Skia 3x3 matrix + camera hackery. |
| 390 | */ |
| 391 | void RenderNode::applyViewPropertyTransforms(mat4& matrix, bool true3dTransform) { |
John Reck | d0a0b2a | 2014-03-20 16:28:56 -0700 | [diff] [blame] | 392 | if (properties().getLeft() != 0 || properties().getTop() != 0) { |
| 393 | matrix.translate(properties().getLeft(), properties().getTop()); |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 394 | } |
John Reck | d0a0b2a | 2014-03-20 16:28:56 -0700 | [diff] [blame] | 395 | if (properties().getStaticMatrix()) { |
| 396 | mat4 stat(*properties().getStaticMatrix()); |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 397 | matrix.multiply(stat); |
John Reck | d0a0b2a | 2014-03-20 16:28:56 -0700 | [diff] [blame] | 398 | } else if (properties().getAnimationMatrix()) { |
| 399 | mat4 anim(*properties().getAnimationMatrix()); |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 400 | matrix.multiply(anim); |
| 401 | } |
Chris Craik | e0bb87d | 2014-04-22 17:55:41 -0700 | [diff] [blame] | 402 | |
Chris Craik | cc39e16 | 2014-04-25 18:34:11 -0700 | [diff] [blame] | 403 | bool applyTranslationZ = true3dTransform && !MathUtils::isZero(properties().getZ()); |
Chris Craik | e0bb87d | 2014-04-22 17:55:41 -0700 | [diff] [blame] | 404 | if (properties().hasTransformMatrix() || applyTranslationZ) { |
John Reck | f7483e3 | 2014-04-11 08:54:47 -0700 | [diff] [blame] | 405 | if (properties().isTransformTranslateOnly()) { |
John Reck | d0a0b2a | 2014-03-20 16:28:56 -0700 | [diff] [blame] | 406 | matrix.translate(properties().getTranslationX(), properties().getTranslationY(), |
Chris Craik | cc39e16 | 2014-04-25 18:34:11 -0700 | [diff] [blame] | 407 | true3dTransform ? properties().getZ() : 0.0f); |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 408 | } else { |
| 409 | if (!true3dTransform) { |
John Reck | d0a0b2a | 2014-03-20 16:28:56 -0700 | [diff] [blame] | 410 | matrix.multiply(*properties().getTransformMatrix()); |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 411 | } else { |
| 412 | mat4 true3dMat; |
| 413 | true3dMat.loadTranslate( |
John Reck | d0a0b2a | 2014-03-20 16:28:56 -0700 | [diff] [blame] | 414 | properties().getPivotX() + properties().getTranslationX(), |
| 415 | properties().getPivotY() + properties().getTranslationY(), |
Chris Craik | cc39e16 | 2014-04-25 18:34:11 -0700 | [diff] [blame] | 416 | properties().getZ()); |
John Reck | d0a0b2a | 2014-03-20 16:28:56 -0700 | [diff] [blame] | 417 | true3dMat.rotate(properties().getRotationX(), 1, 0, 0); |
| 418 | true3dMat.rotate(properties().getRotationY(), 0, 1, 0); |
| 419 | true3dMat.rotate(properties().getRotation(), 0, 0, 1); |
| 420 | true3dMat.scale(properties().getScaleX(), properties().getScaleY(), 1); |
| 421 | true3dMat.translate(-properties().getPivotX(), -properties().getPivotY()); |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 422 | |
| 423 | matrix.multiply(true3dMat); |
| 424 | } |
| 425 | } |
| 426 | } |
| 427 | } |
| 428 | |
| 429 | /** |
| 430 | * Organizes the DisplayList hierarchy to prepare for background projection reordering. |
| 431 | * |
| 432 | * This should be called before a call to defer() or drawDisplayList() |
| 433 | * |
| 434 | * Each DisplayList that serves as a 3d root builds its list of composited children, |
| 435 | * which are flagged to not draw in the standard draw loop. |
| 436 | */ |
| 437 | void RenderNode::computeOrdering() { |
| 438 | ATRACE_CALL(); |
| 439 | mProjectedNodes.clear(); |
| 440 | |
| 441 | // TODO: create temporary DDLOp and call computeOrderingImpl on top DisplayList so that |
| 442 | // transform properties are applied correctly to top level children |
| 443 | if (mDisplayListData == NULL) return; |
John Reck | 087bc0c | 2014-04-04 16:20:08 -0700 | [diff] [blame] | 444 | for (unsigned int i = 0; i < mDisplayListData->children().size(); i++) { |
Chris Craik | a7090e0 | 2014-06-20 16:01:00 -0700 | [diff] [blame] | 445 | DrawRenderNodeOp* childOp = mDisplayListData->children()[i]; |
| 446 | childOp->mRenderNode->computeOrderingImpl(childOp, |
Chris Craik | 3f085429 | 2014-04-15 16:18:08 -0700 | [diff] [blame] | 447 | properties().getOutline().getPath(), &mProjectedNodes, &mat4::identity()); |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 448 | } |
| 449 | } |
| 450 | |
| 451 | void RenderNode::computeOrderingImpl( |
Chris Craik | a7090e0 | 2014-06-20 16:01:00 -0700 | [diff] [blame] | 452 | DrawRenderNodeOp* opState, |
Chris Craik | 3f085429 | 2014-04-15 16:18:08 -0700 | [diff] [blame] | 453 | const SkPath* outlineOfProjectionSurface, |
Chris Craik | a7090e0 | 2014-06-20 16:01:00 -0700 | [diff] [blame] | 454 | Vector<DrawRenderNodeOp*>* compositedChildrenOfProjectionSurface, |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 455 | const mat4* transformFromProjectionSurface) { |
| 456 | mProjectedNodes.clear(); |
| 457 | if (mDisplayListData == NULL || mDisplayListData->isEmpty()) return; |
| 458 | |
| 459 | // TODO: should avoid this calculation in most cases |
| 460 | // TODO: just calculate single matrix, down to all leaf composited elements |
| 461 | Matrix4 localTransformFromProjectionSurface(*transformFromProjectionSurface); |
| 462 | localTransformFromProjectionSurface.multiply(opState->mTransformFromParent); |
| 463 | |
John Reck | d0a0b2a | 2014-03-20 16:28:56 -0700 | [diff] [blame] | 464 | if (properties().getProjectBackwards()) { |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 465 | // composited projectee, flag for out of order draw, save matrix, and store in proj surface |
| 466 | opState->mSkipInOrderDraw = true; |
| 467 | opState->mTransformFromCompositingAncestor.load(localTransformFromProjectionSurface); |
| 468 | compositedChildrenOfProjectionSurface->add(opState); |
| 469 | } else { |
| 470 | // standard in order draw |
| 471 | opState->mSkipInOrderDraw = false; |
| 472 | } |
| 473 | |
John Reck | 087bc0c | 2014-04-04 16:20:08 -0700 | [diff] [blame] | 474 | if (mDisplayListData->children().size() > 0) { |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 475 | const bool isProjectionReceiver = mDisplayListData->projectionReceiveIndex >= 0; |
| 476 | bool haveAppliedPropertiesToProjection = false; |
John Reck | 087bc0c | 2014-04-04 16:20:08 -0700 | [diff] [blame] | 477 | for (unsigned int i = 0; i < mDisplayListData->children().size(); i++) { |
Chris Craik | a7090e0 | 2014-06-20 16:01:00 -0700 | [diff] [blame] | 478 | DrawRenderNodeOp* childOp = mDisplayListData->children()[i]; |
| 479 | RenderNode* child = childOp->mRenderNode; |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 480 | |
Chris Craik | 3f085429 | 2014-04-15 16:18:08 -0700 | [diff] [blame] | 481 | const SkPath* projectionOutline = NULL; |
Chris Craik | a7090e0 | 2014-06-20 16:01:00 -0700 | [diff] [blame] | 482 | Vector<DrawRenderNodeOp*>* projectionChildren = NULL; |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 483 | const mat4* projectionTransform = NULL; |
John Reck | d0a0b2a | 2014-03-20 16:28:56 -0700 | [diff] [blame] | 484 | if (isProjectionReceiver && !child->properties().getProjectBackwards()) { |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 485 | // if receiving projections, collect projecting descendent |
| 486 | |
| 487 | // Note that if a direct descendent is projecting backwards, we pass it's |
| 488 | // grandparent projection collection, since it shouldn't project onto it's |
| 489 | // parent, where it will already be drawing. |
Chris Craik | 3f085429 | 2014-04-15 16:18:08 -0700 | [diff] [blame] | 490 | projectionOutline = properties().getOutline().getPath(); |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 491 | projectionChildren = &mProjectedNodes; |
| 492 | projectionTransform = &mat4::identity(); |
| 493 | } else { |
| 494 | if (!haveAppliedPropertiesToProjection) { |
| 495 | applyViewPropertyTransforms(localTransformFromProjectionSurface); |
| 496 | haveAppliedPropertiesToProjection = true; |
| 497 | } |
Chris Craik | 3f085429 | 2014-04-15 16:18:08 -0700 | [diff] [blame] | 498 | projectionOutline = outlineOfProjectionSurface; |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 499 | projectionChildren = compositedChildrenOfProjectionSurface; |
| 500 | projectionTransform = &localTransformFromProjectionSurface; |
| 501 | } |
Chris Craik | 3f085429 | 2014-04-15 16:18:08 -0700 | [diff] [blame] | 502 | child->computeOrderingImpl(childOp, |
| 503 | projectionOutline, projectionChildren, projectionTransform); |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 504 | } |
| 505 | } |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 506 | } |
| 507 | |
| 508 | class DeferOperationHandler { |
| 509 | public: |
| 510 | DeferOperationHandler(DeferStateStruct& deferStruct, int level) |
| 511 | : mDeferStruct(deferStruct), mLevel(level) {} |
| 512 | inline void operator()(DisplayListOp* operation, int saveCount, bool clipToBounds) { |
| 513 | operation->defer(mDeferStruct, saveCount, mLevel, clipToBounds); |
| 514 | } |
| 515 | inline LinearAllocator& allocator() { return *(mDeferStruct.mAllocator); } |
Chris Craik | b265e2c | 2014-03-27 15:50:09 -0700 | [diff] [blame] | 516 | inline void startMark(const char* name) {} // do nothing |
| 517 | inline void endMark() {} |
| 518 | inline int level() { return mLevel; } |
| 519 | inline int replayFlags() { return mDeferStruct.mReplayFlags; } |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 520 | |
| 521 | private: |
| 522 | DeferStateStruct& mDeferStruct; |
| 523 | const int mLevel; |
| 524 | }; |
| 525 | |
Chris Craik | 80d4902 | 2014-06-20 15:03:43 -0700 | [diff] [blame] | 526 | void RenderNode::defer(DeferStateStruct& deferStruct, const int level) { |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 527 | DeferOperationHandler handler(deferStruct, level); |
Chris Craik | b265e2c | 2014-03-27 15:50:09 -0700 | [diff] [blame] | 528 | issueOperations<DeferOperationHandler>(deferStruct.mRenderer, handler); |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 529 | } |
| 530 | |
| 531 | class ReplayOperationHandler { |
| 532 | public: |
| 533 | ReplayOperationHandler(ReplayStateStruct& replayStruct, int level) |
| 534 | : mReplayStruct(replayStruct), mLevel(level) {} |
| 535 | inline void operator()(DisplayListOp* operation, int saveCount, bool clipToBounds) { |
| 536 | #if DEBUG_DISPLAY_LIST_OPS_AS_EVENTS |
Chris Craik | 3f085429 | 2014-04-15 16:18:08 -0700 | [diff] [blame] | 537 | mReplayStruct.mRenderer.eventMark(operation->name()); |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 538 | #endif |
| 539 | operation->replay(mReplayStruct, saveCount, mLevel, clipToBounds); |
| 540 | } |
| 541 | inline LinearAllocator& allocator() { return *(mReplayStruct.mAllocator); } |
Chris Craik | b265e2c | 2014-03-27 15:50:09 -0700 | [diff] [blame] | 542 | inline void startMark(const char* name) { |
| 543 | mReplayStruct.mRenderer.startMark(name); |
| 544 | } |
| 545 | inline void endMark() { |
| 546 | mReplayStruct.mRenderer.endMark(); |
Chris Craik | b265e2c | 2014-03-27 15:50:09 -0700 | [diff] [blame] | 547 | } |
| 548 | inline int level() { return mLevel; } |
| 549 | inline int replayFlags() { return mReplayStruct.mReplayFlags; } |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 550 | |
| 551 | private: |
| 552 | ReplayStateStruct& mReplayStruct; |
| 553 | const int mLevel; |
| 554 | }; |
| 555 | |
Chris Craik | 80d4902 | 2014-06-20 15:03:43 -0700 | [diff] [blame] | 556 | void RenderNode::replay(ReplayStateStruct& replayStruct, const int level) { |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 557 | ReplayOperationHandler handler(replayStruct, level); |
Chris Craik | b265e2c | 2014-03-27 15:50:09 -0700 | [diff] [blame] | 558 | issueOperations<ReplayOperationHandler>(replayStruct.mRenderer, handler); |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 559 | } |
| 560 | |
Chris Craik | a7090e0 | 2014-06-20 16:01:00 -0700 | [diff] [blame] | 561 | void RenderNode::buildZSortedChildList(Vector<ZDrawRenderNodeOpPair>& zTranslatedNodes) { |
John Reck | 087bc0c | 2014-04-04 16:20:08 -0700 | [diff] [blame] | 562 | if (mDisplayListData == NULL || mDisplayListData->children().size() == 0) return; |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 563 | |
John Reck | 087bc0c | 2014-04-04 16:20:08 -0700 | [diff] [blame] | 564 | for (unsigned int i = 0; i < mDisplayListData->children().size(); i++) { |
Chris Craik | a7090e0 | 2014-06-20 16:01:00 -0700 | [diff] [blame] | 565 | DrawRenderNodeOp* childOp = mDisplayListData->children()[i]; |
| 566 | RenderNode* child = childOp->mRenderNode; |
Chris Craik | cc39e16 | 2014-04-25 18:34:11 -0700 | [diff] [blame] | 567 | float childZ = child->properties().getZ(); |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 568 | |
Chris Craik | e0bb87d | 2014-04-22 17:55:41 -0700 | [diff] [blame] | 569 | if (!MathUtils::isZero(childZ)) { |
Chris Craik | a7090e0 | 2014-06-20 16:01:00 -0700 | [diff] [blame] | 570 | zTranslatedNodes.add(ZDrawRenderNodeOpPair(childZ, childOp)); |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 571 | childOp->mSkipInOrderDraw = true; |
John Reck | d0a0b2a | 2014-03-20 16:28:56 -0700 | [diff] [blame] | 572 | } else if (!child->properties().getProjectBackwards()) { |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 573 | // regular, in order drawing DisplayList |
| 574 | childOp->mSkipInOrderDraw = false; |
| 575 | } |
| 576 | } |
| 577 | |
| 578 | // Z sort 3d children (stable-ness makes z compare fall back to standard drawing order) |
| 579 | std::stable_sort(zTranslatedNodes.begin(), zTranslatedNodes.end()); |
| 580 | } |
| 581 | |
Chris Craik | b265e2c | 2014-03-27 15:50:09 -0700 | [diff] [blame] | 582 | template <class T> |
| 583 | void RenderNode::issueDrawShadowOperation(const Matrix4& transformFromParent, T& handler) { |
Chris Craik | 6131732 | 2014-05-21 13:03:52 -0700 | [diff] [blame] | 584 | if (properties().getAlpha() <= 0.0f || properties().getOutline().isEmpty()) return; |
Chris Craik | b265e2c | 2014-03-27 15:50:09 -0700 | [diff] [blame] | 585 | |
| 586 | mat4 shadowMatrixXY(transformFromParent); |
| 587 | applyViewPropertyTransforms(shadowMatrixXY); |
| 588 | |
| 589 | // Z matrix needs actual 3d transformation, so mapped z values will be correct |
| 590 | mat4 shadowMatrixZ(transformFromParent); |
| 591 | applyViewPropertyTransforms(shadowMatrixZ, true); |
| 592 | |
| 593 | const SkPath* outlinePath = properties().getOutline().getPath(); |
| 594 | const RevealClip& revealClip = properties().getRevealClip(); |
| 595 | const SkPath* revealClipPath = revealClip.hasConvexClip() |
| 596 | ? revealClip.getPath() : NULL; // only pass the reveal clip's path if it's convex |
| 597 | |
Chris Craik | 6131732 | 2014-05-21 13:03:52 -0700 | [diff] [blame] | 598 | if (revealClipPath && revealClipPath->isEmpty()) return; |
| 599 | |
Chris Craik | b265e2c | 2014-03-27 15:50:09 -0700 | [diff] [blame] | 600 | /** |
| 601 | * The drawing area of the caster is always the same as the its perimeter (which |
| 602 | * the shadow system uses) *except* in the inverse clip case. Inform the shadow |
| 603 | * system that the caster's drawing area (as opposed to its perimeter) has been |
| 604 | * clipped, so that it knows the caster can't be opaque. |
| 605 | */ |
| 606 | bool casterUnclipped = !revealClip.willClip() || revealClip.hasConvexClip(); |
| 607 | |
| 608 | DisplayListOp* shadowOp = new (handler.allocator()) DrawShadowOp( |
| 609 | shadowMatrixXY, shadowMatrixZ, |
| 610 | properties().getAlpha(), casterUnclipped, |
Chris Craik | b265e2c | 2014-03-27 15:50:09 -0700 | [diff] [blame] | 611 | outlinePath, revealClipPath); |
| 612 | handler(shadowOp, PROPERTY_SAVECOUNT, properties().getClipToBounds()); |
| 613 | } |
| 614 | |
Chris Craik | 80d4902 | 2014-06-20 15:03:43 -0700 | [diff] [blame] | 615 | template <class T> |
| 616 | int RenderNode::issueOperationsOfNegZChildren( |
Chris Craik | a7090e0 | 2014-06-20 16:01:00 -0700 | [diff] [blame] | 617 | const Vector<ZDrawRenderNodeOpPair>& zTranslatedNodes, |
Chris Craik | 80d4902 | 2014-06-20 15:03:43 -0700 | [diff] [blame] | 618 | OpenGLRenderer& renderer, T& handler) { |
| 619 | if (zTranslatedNodes.isEmpty()) return -1; |
| 620 | |
| 621 | // create a save around the body of the ViewGroup's draw method, so that |
| 622 | // matrix/clip methods don't affect composited children |
| 623 | int shadowSaveCount = renderer.getSaveCount(); |
| 624 | handler(new (handler.allocator()) SaveOp(SkCanvas::kMatrix_SaveFlag | SkCanvas::kClip_SaveFlag), |
| 625 | PROPERTY_SAVECOUNT, properties().getClipToBounds()); |
| 626 | |
| 627 | issueOperationsOf3dChildren(zTranslatedNodes, kNegativeZChildren, renderer, handler); |
| 628 | return shadowSaveCount; |
| 629 | } |
| 630 | |
| 631 | template <class T> |
| 632 | void RenderNode::issueOperationsOfPosZChildren(int shadowRestoreTo, |
Chris Craik | a7090e0 | 2014-06-20 16:01:00 -0700 | [diff] [blame] | 633 | const Vector<ZDrawRenderNodeOpPair>& zTranslatedNodes, |
Chris Craik | 80d4902 | 2014-06-20 15:03:43 -0700 | [diff] [blame] | 634 | OpenGLRenderer& renderer, T& handler) { |
| 635 | if (zTranslatedNodes.isEmpty()) return; |
| 636 | |
| 637 | LOG_ALWAYS_FATAL_IF(shadowRestoreTo < 0, "invalid save to restore to"); |
| 638 | handler(new (handler.allocator()) RestoreToCountOp(shadowRestoreTo), |
| 639 | PROPERTY_SAVECOUNT, properties().getClipToBounds()); |
| 640 | renderer.setOverrideLayerAlpha(1.0f); |
| 641 | |
| 642 | issueOperationsOf3dChildren(zTranslatedNodes, kPositiveZChildren, renderer, handler); |
| 643 | } |
| 644 | |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 645 | #define SHADOW_DELTA 0.1f |
| 646 | |
| 647 | template <class T> |
Chris Craik | a7090e0 | 2014-06-20 16:01:00 -0700 | [diff] [blame] | 648 | void RenderNode::issueOperationsOf3dChildren(const Vector<ZDrawRenderNodeOpPair>& zTranslatedNodes, |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 649 | ChildrenSelectMode mode, OpenGLRenderer& renderer, T& handler) { |
| 650 | const int size = zTranslatedNodes.size(); |
| 651 | if (size == 0 |
| 652 | || (mode == kNegativeZChildren && zTranslatedNodes[0].key > 0.0f) |
| 653 | || (mode == kPositiveZChildren && zTranslatedNodes[size - 1].key < 0.0f)) { |
| 654 | // no 3d children to draw |
| 655 | return; |
| 656 | } |
| 657 | |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 658 | /** |
| 659 | * Draw shadows and (potential) casters mostly in order, but allow the shadows of casters |
| 660 | * with very similar Z heights to draw together. |
| 661 | * |
| 662 | * This way, if Views A & B have the same Z height and are both casting shadows, the shadows are |
| 663 | * underneath both, and neither's shadow is drawn on top of the other. |
| 664 | */ |
| 665 | const size_t nonNegativeIndex = findNonNegativeIndex(zTranslatedNodes); |
| 666 | size_t drawIndex, shadowIndex, endIndex; |
| 667 | if (mode == kNegativeZChildren) { |
| 668 | drawIndex = 0; |
| 669 | endIndex = nonNegativeIndex; |
| 670 | shadowIndex = endIndex; // draw no shadows |
| 671 | } else { |
| 672 | drawIndex = nonNegativeIndex; |
| 673 | endIndex = size; |
| 674 | shadowIndex = drawIndex; // potentially draw shadow for each pos Z child |
| 675 | } |
Chris Craik | 3f085429 | 2014-04-15 16:18:08 -0700 | [diff] [blame] | 676 | |
| 677 | DISPLAY_LIST_LOGD("%*s%d %s 3d children:", (handler.level() + 1) * 2, "", |
| 678 | endIndex - drawIndex, mode == kNegativeZChildren ? "negative" : "positive"); |
| 679 | |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 680 | float lastCasterZ = 0.0f; |
| 681 | while (shadowIndex < endIndex || drawIndex < endIndex) { |
| 682 | if (shadowIndex < endIndex) { |
Chris Craik | a7090e0 | 2014-06-20 16:01:00 -0700 | [diff] [blame] | 683 | DrawRenderNodeOp* casterOp = zTranslatedNodes[shadowIndex].value; |
| 684 | RenderNode* caster = casterOp->mRenderNode; |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 685 | const float casterZ = zTranslatedNodes[shadowIndex].key; |
| 686 | // attempt to render the shadow if the caster about to be drawn is its caster, |
| 687 | // OR if its caster's Z value is similar to the previous potential caster |
| 688 | if (shadowIndex == drawIndex || casterZ - lastCasterZ < SHADOW_DELTA) { |
Chris Craik | b265e2c | 2014-03-27 15:50:09 -0700 | [diff] [blame] | 689 | caster->issueDrawShadowOperation(casterOp->mTransformFromParent, handler); |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 690 | |
| 691 | lastCasterZ = casterZ; // must do this even if current caster not casting a shadow |
| 692 | shadowIndex++; |
| 693 | continue; |
| 694 | } |
| 695 | } |
| 696 | |
| 697 | // only the actual child DL draw needs to be in save/restore, |
| 698 | // since it modifies the renderer's matrix |
| 699 | int restoreTo = renderer.save(SkCanvas::kMatrix_SaveFlag); |
| 700 | |
Chris Craik | a7090e0 | 2014-06-20 16:01:00 -0700 | [diff] [blame] | 701 | DrawRenderNodeOp* childOp = zTranslatedNodes[drawIndex].value; |
| 702 | RenderNode* child = childOp->mRenderNode; |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 703 | |
| 704 | renderer.concatMatrix(childOp->mTransformFromParent); |
| 705 | childOp->mSkipInOrderDraw = false; // this is horrible, I'm so sorry everyone |
John Reck | d0a0b2a | 2014-03-20 16:28:56 -0700 | [diff] [blame] | 706 | handler(childOp, renderer.getSaveCount() - 1, properties().getClipToBounds()); |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 707 | childOp->mSkipInOrderDraw = true; |
| 708 | |
| 709 | renderer.restoreToCount(restoreTo); |
| 710 | drawIndex++; |
| 711 | } |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 712 | } |
| 713 | |
| 714 | template <class T> |
Chris Craik | b265e2c | 2014-03-27 15:50:09 -0700 | [diff] [blame] | 715 | void RenderNode::issueOperationsOfProjectedChildren(OpenGLRenderer& renderer, T& handler) { |
Chris Craik | 3f085429 | 2014-04-15 16:18:08 -0700 | [diff] [blame] | 716 | DISPLAY_LIST_LOGD("%*s%d projected children:", (handler.level() + 1) * 2, "", mProjectedNodes.size()); |
| 717 | const SkPath* projectionReceiverOutline = properties().getOutline().getPath(); |
Chris Craik | 3f085429 | 2014-04-15 16:18:08 -0700 | [diff] [blame] | 718 | int restoreTo = renderer.getSaveCount(); |
| 719 | |
| 720 | // If the projection reciever has an outline, we mask each of the projected rendernodes to it |
| 721 | // Either with clipRect, or special saveLayer masking |
| 722 | LinearAllocator& alloc = handler.allocator(); |
| 723 | if (projectionReceiverOutline != NULL) { |
| 724 | const SkRect& outlineBounds = projectionReceiverOutline->getBounds(); |
| 725 | if (projectionReceiverOutline->isRect(NULL)) { |
| 726 | // mask to the rect outline simply with clipRect |
| 727 | handler(new (alloc) SaveOp(SkCanvas::kMatrix_SaveFlag | SkCanvas::kClip_SaveFlag), |
| 728 | PROPERTY_SAVECOUNT, properties().getClipToBounds()); |
| 729 | ClipRectOp* clipOp = new (alloc) ClipRectOp( |
| 730 | outlineBounds.left(), outlineBounds.top(), |
| 731 | outlineBounds.right(), outlineBounds.bottom(), SkRegion::kIntersect_Op); |
| 732 | handler(clipOp, PROPERTY_SAVECOUNT, properties().getClipToBounds()); |
| 733 | } else { |
| 734 | // wrap the projected RenderNodes with a SaveLayer that will mask to the outline |
| 735 | SaveLayerOp* op = new (alloc) SaveLayerOp( |
| 736 | outlineBounds.left(), outlineBounds.top(), |
| 737 | outlineBounds.right(), outlineBounds.bottom(), |
Chris Craik | 80d4902 | 2014-06-20 15:03:43 -0700 | [diff] [blame] | 738 | 255, SkCanvas::kMatrix_SaveFlag | SkCanvas::kClip_SaveFlag | SkCanvas::kARGB_ClipLayer_SaveFlag); |
Chris Craik | 3f085429 | 2014-04-15 16:18:08 -0700 | [diff] [blame] | 739 | op->setMask(projectionReceiverOutline); |
| 740 | handler(op, PROPERTY_SAVECOUNT, properties().getClipToBounds()); |
| 741 | |
| 742 | /* TODO: add optimizations here to take advantage of placement/size of projected |
| 743 | * children (which may shrink saveLayer area significantly). This is dependent on |
| 744 | * passing actual drawing/dirtying bounds of projected content down to native. |
| 745 | */ |
| 746 | } |
| 747 | } |
| 748 | |
| 749 | // draw projected nodes |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 750 | for (size_t i = 0; i < mProjectedNodes.size(); i++) { |
Chris Craik | a7090e0 | 2014-06-20 16:01:00 -0700 | [diff] [blame] | 751 | DrawRenderNodeOp* childOp = mProjectedNodes[i]; |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 752 | |
| 753 | // matrix save, concat, and restore can be done safely without allocating operations |
| 754 | int restoreTo = renderer.save(SkCanvas::kMatrix_SaveFlag); |
| 755 | renderer.concatMatrix(childOp->mTransformFromCompositingAncestor); |
| 756 | childOp->mSkipInOrderDraw = false; // this is horrible, I'm so sorry everyone |
John Reck | d0a0b2a | 2014-03-20 16:28:56 -0700 | [diff] [blame] | 757 | handler(childOp, renderer.getSaveCount() - 1, properties().getClipToBounds()); |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 758 | childOp->mSkipInOrderDraw = true; |
| 759 | renderer.restoreToCount(restoreTo); |
| 760 | } |
Chris Craik | 3f085429 | 2014-04-15 16:18:08 -0700 | [diff] [blame] | 761 | |
| 762 | if (projectionReceiverOutline != NULL) { |
| 763 | handler(new (alloc) RestoreToCountOp(restoreTo), |
| 764 | PROPERTY_SAVECOUNT, properties().getClipToBounds()); |
| 765 | } |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 766 | } |
| 767 | |
| 768 | /** |
| 769 | * This function serves both defer and replay modes, and will organize the displayList's component |
| 770 | * operations for a single frame: |
| 771 | * |
| 772 | * Every 'simple' state operation that affects just the matrix and alpha (or other factors of |
| 773 | * DeferredDisplayState) may be issued directly to the renderer, but complex operations (with custom |
| 774 | * defer logic) and operations in displayListOps are issued through the 'handler' which handles the |
| 775 | * defer vs replay logic, per operation |
| 776 | */ |
| 777 | template <class T> |
Chris Craik | b265e2c | 2014-03-27 15:50:09 -0700 | [diff] [blame] | 778 | void RenderNode::issueOperations(OpenGLRenderer& renderer, T& handler) { |
John Reck | 25fbb3f | 2014-06-12 13:46:45 -0700 | [diff] [blame] | 779 | const bool drawLayer = (mLayer && (&renderer != mLayer->renderer)); |
| 780 | // If we are updating the contents of mLayer, we don't want to apply any of |
| 781 | // the RenderNode's properties to this issueOperations pass. Those will all |
| 782 | // be applied when the layer is drawn, aka when this is true. |
| 783 | const bool useViewProperties = (!mLayer || drawLayer); |
| 784 | |
Chris Craik | b265e2c | 2014-03-27 15:50:09 -0700 | [diff] [blame] | 785 | const int level = handler.level(); |
John Reck | 25fbb3f | 2014-06-12 13:46:45 -0700 | [diff] [blame] | 786 | if (mDisplayListData->isEmpty() || (useViewProperties && properties().getAlpha() <= 0)) { |
Chris Craik | 3f085429 | 2014-04-15 16:18:08 -0700 | [diff] [blame] | 787 | DISPLAY_LIST_LOGD("%*sEmpty display list (%p, %s)", level * 2, "", this, getName()); |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 788 | return; |
| 789 | } |
| 790 | |
Chris Craik | 3f085429 | 2014-04-15 16:18:08 -0700 | [diff] [blame] | 791 | handler.startMark(getName()); |
Chris Craik | b265e2c | 2014-03-27 15:50:09 -0700 | [diff] [blame] | 792 | |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 793 | #if DEBUG_DISPLAY_LIST |
Chris Craik | 3f085429 | 2014-04-15 16:18:08 -0700 | [diff] [blame] | 794 | const Rect& clipRect = renderer.getLocalClipBounds(); |
| 795 | DISPLAY_LIST_LOGD("%*sStart display list (%p, %s), localClipBounds: %.0f, %.0f, %.0f, %.0f", |
| 796 | level * 2, "", this, getName(), |
| 797 | clipRect.left, clipRect.top, clipRect.right, clipRect.bottom); |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 798 | #endif |
| 799 | |
| 800 | LinearAllocator& alloc = handler.allocator(); |
| 801 | int restoreTo = renderer.getSaveCount(); |
| 802 | handler(new (alloc) SaveOp(SkCanvas::kMatrix_SaveFlag | SkCanvas::kClip_SaveFlag), |
John Reck | d0a0b2a | 2014-03-20 16:28:56 -0700 | [diff] [blame] | 803 | PROPERTY_SAVECOUNT, properties().getClipToBounds()); |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 804 | |
| 805 | DISPLAY_LIST_LOGD("%*sSave %d %d", (level + 1) * 2, "", |
| 806 | SkCanvas::kMatrix_SaveFlag | SkCanvas::kClip_SaveFlag, restoreTo); |
| 807 | |
John Reck | 25fbb3f | 2014-06-12 13:46:45 -0700 | [diff] [blame] | 808 | if (useViewProperties) { |
| 809 | setViewProperties<T>(renderer, handler); |
| 810 | } |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 811 | |
Chris Craik | 8c271ca | 2014-03-25 10:33:01 -0700 | [diff] [blame] | 812 | bool quickRejected = properties().getClipToBounds() |
| 813 | && renderer.quickRejectConservative(0, 0, properties().getWidth(), properties().getHeight()); |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 814 | if (!quickRejected) { |
Chris Craik | deeda3d | 2014-05-05 19:09:33 -0700 | [diff] [blame] | 815 | if (mProperties.getOutline().willClip()) { |
| 816 | renderer.setClippingOutline(alloc, &(mProperties.getOutline())); |
| 817 | } |
| 818 | |
John Reck | 25fbb3f | 2014-06-12 13:46:45 -0700 | [diff] [blame] | 819 | if (drawLayer) { |
| 820 | handler(new (alloc) DrawLayerOp(mLayer, 0, 0), |
| 821 | renderer.getSaveCount() - 1, properties().getClipToBounds()); |
| 822 | } else { |
Chris Craik | a7090e0 | 2014-06-20 16:01:00 -0700 | [diff] [blame] | 823 | Vector<ZDrawRenderNodeOpPair> zTranslatedNodes; |
John Reck | 25fbb3f | 2014-06-12 13:46:45 -0700 | [diff] [blame] | 824 | buildZSortedChildList(zTranslatedNodes); |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 825 | |
John Reck | 25fbb3f | 2014-06-12 13:46:45 -0700 | [diff] [blame] | 826 | // for 3d root, draw children with negative z values |
Chris Craik | 80d4902 | 2014-06-20 15:03:43 -0700 | [diff] [blame] | 827 | int shadowRestoreTo = issueOperationsOfNegZChildren(zTranslatedNodes, renderer, handler); |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 828 | |
John Reck | 25fbb3f | 2014-06-12 13:46:45 -0700 | [diff] [blame] | 829 | DisplayListLogBuffer& logBuffer = DisplayListLogBuffer::getInstance(); |
| 830 | const int saveCountOffset = renderer.getSaveCount() - 1; |
| 831 | const int projectionReceiveIndex = mDisplayListData->projectionReceiveIndex; |
| 832 | for (unsigned int i = 0; i < mDisplayListData->displayListOps.size(); i++) { |
| 833 | DisplayListOp *op = mDisplayListData->displayListOps[i]; |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 834 | |
Chris Craik | 80d4902 | 2014-06-20 15:03:43 -0700 | [diff] [blame] | 835 | #if DEBUG_DISPLAY_LIST |
John Reck | 25fbb3f | 2014-06-12 13:46:45 -0700 | [diff] [blame] | 836 | op->output(level + 1); |
Chris Craik | 80d4902 | 2014-06-20 15:03:43 -0700 | [diff] [blame] | 837 | #endif |
John Reck | 25fbb3f | 2014-06-12 13:46:45 -0700 | [diff] [blame] | 838 | logBuffer.writeCommand(level, op->name()); |
| 839 | handler(op, saveCountOffset, properties().getClipToBounds()); |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 840 | |
John Reck | 25fbb3f | 2014-06-12 13:46:45 -0700 | [diff] [blame] | 841 | if (CC_UNLIKELY(i == projectionReceiveIndex && mProjectedNodes.size() > 0)) { |
| 842 | issueOperationsOfProjectedChildren(renderer, handler); |
| 843 | } |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 844 | } |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 845 | |
John Reck | 25fbb3f | 2014-06-12 13:46:45 -0700 | [diff] [blame] | 846 | // for 3d root, draw children with positive z values |
Chris Craik | 80d4902 | 2014-06-20 15:03:43 -0700 | [diff] [blame] | 847 | issueOperationsOfPosZChildren(shadowRestoreTo, zTranslatedNodes, renderer, handler); |
John Reck | 25fbb3f | 2014-06-12 13:46:45 -0700 | [diff] [blame] | 848 | } |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 849 | } |
| 850 | |
| 851 | DISPLAY_LIST_LOGD("%*sRestoreToCount %d", (level + 1) * 2, "", restoreTo); |
| 852 | handler(new (alloc) RestoreToCountOp(restoreTo), |
John Reck | d0a0b2a | 2014-03-20 16:28:56 -0700 | [diff] [blame] | 853 | PROPERTY_SAVECOUNT, properties().getClipToBounds()); |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 854 | renderer.setOverrideLayerAlpha(1.0f); |
Chris Craik | b265e2c | 2014-03-27 15:50:09 -0700 | [diff] [blame] | 855 | |
Chris Craik | 3f085429 | 2014-04-15 16:18:08 -0700 | [diff] [blame] | 856 | DISPLAY_LIST_LOGD("%*sDone (%p, %s)", level * 2, "", this, getName()); |
Chris Craik | b265e2c | 2014-03-27 15:50:09 -0700 | [diff] [blame] | 857 | handler.endMark(); |
John Reck | 113e082 | 2014-03-18 09:22:59 -0700 | [diff] [blame] | 858 | } |
| 859 | |
| 860 | } /* namespace uirenderer */ |
| 861 | } /* namespace android */ |