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