blob: 0ebb8866bdb3269a09fedc7421911338ac3abedc [file] [log] [blame]
Chris Craikb565df12015-10-05 13:00:52 -07001/*
Chris Craik5ea17242016-01-11 14:07:59 -08002 * Copyright (C) 2016 The Android Open Source Project
Chris Craikb565df12015-10-05 13:00:52 -07003 *
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
Chris Craikf158b492016-01-12 14:45:08 -080017#include "FrameBuilder.h"
Chris Craikb565df12015-10-05 13:00:52 -070018
Chris Craik0b7e8242015-10-28 16:50:44 -070019#include "LayerUpdateQueue.h"
Chris Craik161f54b2015-11-05 11:08:52 -080020#include "RenderNode.h"
Doris Liu766431a2016-02-04 22:17:11 +000021#include "VectorDrawable.h"
Chris Craik98787e62015-11-13 10:55:30 -080022#include "renderstate/OffscreenBufferPool.h"
sergeyvdccca442016-03-21 15:38:21 -070023#include "hwui/Canvas.h"
Chris Craik161f54b2015-11-05 11:08:52 -080024#include "utils/FatVector.h"
25#include "utils/PaintUtils.h"
Chris Craik8ecf41c2015-11-16 10:27:59 -080026#include "utils/TraceUtils.h"
Chris Craikb565df12015-10-05 13:00:52 -070027
Chris Craikd3daa312015-11-06 10:59:56 -080028#include <SkPathOps.h>
Chris Craik161f54b2015-11-05 11:08:52 -080029#include <utils/TypeHelpers.h>
Chris Craikb565df12015-10-05 13:00:52 -070030
31namespace android {
32namespace uirenderer {
33
Chris Craikf158b492016-01-12 14:45:08 -080034FrameBuilder::FrameBuilder(const LayerUpdateQueue& layers, const SkRect& clip,
Chris Craik0b7e8242015-10-28 16:50:44 -070035 uint32_t viewportWidth, uint32_t viewportHeight,
Chris Craik6e068c012016-01-15 16:15:30 -080036 const std::vector< sp<RenderNode> >& nodes,
Chris Craik3a5811b2016-03-22 15:03:08 -070037 const LightGeometry& lightGeometry, const Rect &contentDrawBounds, Caches& caches)
Chris Craik6e068c012016-01-15 16:15:30 -080038 : mCanvasState(*this)
39 , mCaches(caches)
40 , mLightRadius(lightGeometry.radius) {
Chris Craik818c9fb2015-10-23 14:33:42 -070041 ATRACE_NAME("prepare drawing commands");
Chris Craikb565df12015-10-05 13:00:52 -070042
Chris Craikf158b492016-01-12 14:45:08 -080043 mLayerBuilders.reserve(layers.entries().size());
Chris Craik98787e62015-11-13 10:55:30 -080044 mLayerStack.reserve(layers.entries().size());
45
46 // Prepare to defer Fbo0
Chris Craikf158b492016-01-12 14:45:08 -080047 auto fbo0 = mAllocator.create<LayerBuilder>(viewportWidth, viewportHeight, Rect(clip));
48 mLayerBuilders.push_back(fbo0);
Chris Craik98787e62015-11-13 10:55:30 -080049 mLayerStack.push_back(0);
Chris Craikb565df12015-10-05 13:00:52 -070050 mCanvasState.initializeSaveStack(viewportWidth, viewportHeight,
Chris Craikddf22152015-10-14 17:42:47 -070051 clip.fLeft, clip.fTop, clip.fRight, clip.fBottom,
Chris Craik6e068c012016-01-15 16:15:30 -080052 lightGeometry.center);
Chris Craik0b7e8242015-10-28 16:50:44 -070053
54 // Render all layers to be updated, in order. Defer in reverse order, so that they'll be
Chris Craikf158b492016-01-12 14:45:08 -080055 // updated in the order they're passed in (mLayerBuilders are issued to Renderer in reverse)
Chris Craik0b7e8242015-10-28 16:50:44 -070056 for (int i = layers.entries().size() - 1; i >= 0; i--) {
57 RenderNode* layerNode = layers.entries()[i].renderNode;
Chris Craike9c5fd82016-01-12 18:59:38 -080058 // only schedule repaint if node still on layer - possible it may have been
59 // removed during a dropped frame, but layers may still remain scheduled so
60 // as not to lose info on what portion is damaged
61 if (CC_LIKELY(layerNode->getLayer() != nullptr)) {
62 const Rect& layerDamage = layers.entries()[i].damage;
63 layerNode->computeOrdering();
Chris Craik0b7e8242015-10-28 16:50:44 -070064
Chris Craike9c5fd82016-01-12 18:59:38 -080065 // map current light center into RenderNode's coordinate space
66 Vector3 lightCenter = mCanvasState.currentSnapshot()->getRelativeLightCenter();
67 layerNode->getLayer()->inverseTransformInWindow.mapPoint3d(lightCenter);
Chris Craik8ecf41c2015-11-16 10:27:59 -080068
Chris Craike9c5fd82016-01-12 18:59:38 -080069 saveForLayer(layerNode->getWidth(), layerNode->getHeight(), 0, 0,
70 layerDamage, lightCenter, nullptr, layerNode);
Chris Craik0b7e8242015-10-28 16:50:44 -070071
Chris Craike9c5fd82016-01-12 18:59:38 -080072 if (layerNode->getDisplayList()) {
73 deferNodeOps(*layerNode);
74 }
75 restoreForLayer();
Chris Craik0b7e8242015-10-28 16:50:44 -070076 }
Chris Craik0b7e8242015-10-28 16:50:44 -070077 }
78
Chong Zhangc3bd5682016-01-25 12:01:12 -080079 // It there are multiple render nodes, they are laid out as follows:
80 // #0 - backdrop (content + caption)
81 // #1 - content (positioned at (0,0) and clipped to - its bounds mContentDrawBounds)
82 // #2 - additional overlay nodes
83 // Usually the backdrop cannot be seen since it will be entirely covered by the content. While
84 // resizing however it might become partially visible. The following render loop will crop the
85 // backdrop against the content and draw the remaining part of it. It will then draw the content
86 // cropped to the backdrop (since that indicates a shrinking of the window).
87 //
88 // Additional nodes will be drawn on top with no particular clipping semantics.
89
90 // The bounds of the backdrop against which the content should be clipped.
91 Rect backdropBounds = contentDrawBounds;
92 // Usually the contents bounds should be mContentDrawBounds - however - we will
93 // move it towards the fixed edge to give it a more stable appearance (for the moment).
94 // If there is no content bounds we ignore the layering as stated above and start with 2.
95 int layer = (contentDrawBounds.isEmpty() || nodes.size() == 1) ? 2 : 0;
96
Chris Craikb565df12015-10-05 13:00:52 -070097 for (const sp<RenderNode>& node : nodes) {
98 if (node->nothingToDraw()) continue;
Chris Craik8d1f2122015-11-24 16:40:09 -080099 node->computeOrdering();
Florin Malitaeecff562015-12-21 10:43:01 -0500100 int count = mCanvasState.save(SaveFlags::MatrixClip);
Chong Zhangc3bd5682016-01-25 12:01:12 -0800101
102 if (layer == 0) {
103 const RenderProperties& properties = node->properties();
104 Rect targetBounds(properties.getLeft(), properties.getTop(),
105 properties.getRight(), properties.getBottom());
106 // Move the content bounds towards the fixed corner of the backdrop.
107 const int x = targetBounds.left;
108 const int y = targetBounds.top;
109 // Remember the intersection of the target bounds and the intersection bounds against
110 // which we have to crop the content.
111 backdropBounds.set(x, y, x + backdropBounds.getWidth(), y + backdropBounds.getHeight());
112 backdropBounds.doIntersect(targetBounds);
113 } else if (layer == 1) {
114 // We shift and clip the content to match its final location in the window.
115 const float left = contentDrawBounds.left;
116 const float top = contentDrawBounds.top;
117 const float dx = backdropBounds.left - left;
118 const float dy = backdropBounds.top - top;
119 const float width = backdropBounds.getWidth();
120 const float height = backdropBounds.getHeight();
121 mCanvasState.translate(dx, dy);
122 // It gets cropped against the bounds of the backdrop to stay inside.
123 mCanvasState.clipRect(left, top, left + width, top + height, SkRegion::kIntersect_Op);
124 }
125
Chris Craik0b7e8242015-10-28 16:50:44 -0700126 deferNodePropsAndOps(*node);
127 mCanvasState.restoreToCount(count);
Chong Zhangc3bd5682016-01-25 12:01:12 -0800128 layer++;
Chris Craikb565df12015-10-05 13:00:52 -0700129 }
130}
131
Chris Craikf158b492016-01-12 14:45:08 -0800132void FrameBuilder::onViewportInitialized() {}
Chris Craik818c9fb2015-10-23 14:33:42 -0700133
Chris Craikf158b492016-01-12 14:45:08 -0800134void FrameBuilder::onSnapshotRestored(const Snapshot& removed, const Snapshot& restored) {}
Chris Craik818c9fb2015-10-23 14:33:42 -0700135
Chris Craikf158b492016-01-12 14:45:08 -0800136void FrameBuilder::deferNodePropsAndOps(RenderNode& node) {
Chris Craik8ecf41c2015-11-16 10:27:59 -0800137 const RenderProperties& properties = node.properties();
138 const Outline& outline = properties.getOutline();
139 if (properties.getAlpha() <= 0
140 || (outline.getShouldClip() && outline.isEmpty())
141 || properties.getScaleX() == 0
142 || properties.getScaleY() == 0) {
143 return; // rejected
144 }
145
146 if (properties.getLeft() != 0 || properties.getTop() != 0) {
147 mCanvasState.translate(properties.getLeft(), properties.getTop());
148 }
149 if (properties.getStaticMatrix()) {
150 mCanvasState.concatMatrix(*properties.getStaticMatrix());
151 } else if (properties.getAnimationMatrix()) {
152 mCanvasState.concatMatrix(*properties.getAnimationMatrix());
153 }
154 if (properties.hasTransformMatrix()) {
155 if (properties.isTransformTranslateOnly()) {
156 mCanvasState.translate(properties.getTranslationX(), properties.getTranslationY());
157 } else {
158 mCanvasState.concatMatrix(*properties.getTransformMatrix());
159 }
160 }
161
162 const int width = properties.getWidth();
163 const int height = properties.getHeight();
164
165 Rect saveLayerBounds; // will be set to non-empty if saveLayer needed
166 const bool isLayer = properties.effectiveLayerType() != LayerType::None;
167 int clipFlags = properties.getClippingFlags();
168 if (properties.getAlpha() < 1) {
169 if (isLayer) {
170 clipFlags &= ~CLIP_TO_BOUNDS; // bounds clipping done by layer
171 }
172 if (CC_LIKELY(isLayer || !properties.getHasOverlappingRendering())) {
173 // simply scale rendering content's alpha
174 mCanvasState.scaleAlpha(properties.getAlpha());
175 } else {
176 // schedule saveLayer by initializing saveLayerBounds
177 saveLayerBounds.set(0, 0, width, height);
178 if (clipFlags) {
179 properties.getClippingRectForFlags(clipFlags, &saveLayerBounds);
180 clipFlags = 0; // all clipping done by savelayer
181 }
182 }
183
184 if (CC_UNLIKELY(ATRACE_ENABLED() && properties.promotedToLayer())) {
185 // pretend alpha always causes savelayer to warn about
186 // performance problem affecting old versions
187 ATRACE_FORMAT("%s alpha caused saveLayer %dx%d", node.getName(), width, height);
188 }
189 }
190 if (clipFlags) {
191 Rect clipRect;
192 properties.getClippingRectForFlags(clipFlags, &clipRect);
193 mCanvasState.clipRect(clipRect.left, clipRect.top, clipRect.right, clipRect.bottom,
194 SkRegion::kIntersect_Op);
195 }
196
197 if (properties.getRevealClip().willClip()) {
198 Rect bounds;
199 properties.getRevealClip().getBounds(&bounds);
200 mCanvasState.setClippingRoundRect(mAllocator,
201 bounds, properties.getRevealClip().getRadius());
202 } else if (properties.getOutline().willClip()) {
203 mCanvasState.setClippingOutline(mAllocator, &(properties.getOutline()));
204 }
205
Chris Craik8913c892016-01-14 16:15:03 -0800206 bool quickRejected = mCanvasState.currentSnapshot()->getRenderTargetClip().isEmpty()
207 || (properties.getClipToBounds()
208 && mCanvasState.quickRejectConservative(0, 0, width, height));
Chris Craik7fc1b032016-02-03 19:45:06 -0800209 if (!quickRejected) {
Chris Craik8ecf41c2015-11-16 10:27:59 -0800210 // not rejected, so defer render as either Layer, or direct (possibly wrapped in saveLayer)
Chris Craik0b7e8242015-10-28 16:50:44 -0700211 if (node.getLayer()) {
212 // HW layer
John Reck7df9ff22016-02-10 16:08:08 -0800213 LayerOp* drawLayerOp = mAllocator.create_trivial<LayerOp>(node);
Chris Craik0b7e8242015-10-28 16:50:44 -0700214 BakedOpState* bakedOpState = tryBakeOpState(*drawLayerOp);
215 if (bakedOpState) {
Chris Craik8ecf41c2015-11-16 10:27:59 -0800216 // Node's layer already deferred, schedule it to render into parent layer
Chris Craik0b7e8242015-10-28 16:50:44 -0700217 currentLayer().deferUnmergeableOp(mAllocator, bakedOpState, OpBatchType::Bitmap);
218 }
Chris Craik8ecf41c2015-11-16 10:27:59 -0800219 } else if (CC_UNLIKELY(!saveLayerBounds.isEmpty())) {
220 // draw DisplayList contents within temporary, since persisted layer could not be used.
221 // (temp layers are clipped to viewport, since they don't persist offscreen content)
222 SkPaint saveLayerPaint;
223 saveLayerPaint.setAlpha(properties.getAlpha());
John Reck7df9ff22016-02-10 16:08:08 -0800224 deferBeginLayerOp(*mAllocator.create_trivial<BeginLayerOp>(
Chris Craik8ecf41c2015-11-16 10:27:59 -0800225 saveLayerBounds,
226 Matrix4::identity(),
Chris Craike4db79d2015-12-22 16:32:23 -0800227 nullptr, // no record-time clip - need only respect defer-time one
Chris Craik8ecf41c2015-11-16 10:27:59 -0800228 &saveLayerPaint));
Chris Craik8d1f2122015-11-24 16:40:09 -0800229 deferNodeOps(node);
John Reck7df9ff22016-02-10 16:08:08 -0800230 deferEndLayerOp(*mAllocator.create_trivial<EndLayerOp>());
Chris Craik0b7e8242015-10-28 16:50:44 -0700231 } else {
Chris Craik8d1f2122015-11-24 16:40:09 -0800232 deferNodeOps(node);
Chris Craik0b7e8242015-10-28 16:50:44 -0700233 }
234 }
235}
236
Chris Craik161f54b2015-11-05 11:08:52 -0800237typedef key_value_pair_t<float, const RenderNodeOp*> ZRenderNodeOpPair;
238
239template <typename V>
240static void buildZSortedChildList(V* zTranslatedNodes,
241 const DisplayList& displayList, const DisplayList::Chunk& chunk) {
242 if (chunk.beginChildIndex == chunk.endChildIndex) return;
243
244 for (size_t i = chunk.beginChildIndex; i < chunk.endChildIndex; i++) {
245 RenderNodeOp* childOp = displayList.getChildren()[i];
246 RenderNode* child = childOp->renderNode;
247 float childZ = child->properties().getZ();
248
249 if (!MathUtils::isZero(childZ) && chunk.reorderChildren) {
250 zTranslatedNodes->push_back(ZRenderNodeOpPair(childZ, childOp));
251 childOp->skipInOrderDraw = true;
252 } else if (!child->properties().getProjectBackwards()) {
253 // regular, in order drawing DisplayList
254 childOp->skipInOrderDraw = false;
255 }
256 }
257
258 // Z sort any 3d children (stable-ness makes z compare fall back to standard drawing order)
259 std::stable_sort(zTranslatedNodes->begin(), zTranslatedNodes->end());
260}
261
262template <typename V>
263static size_t findNonNegativeIndex(const V& zTranslatedNodes) {
264 for (size_t i = 0; i < zTranslatedNodes.size(); i++) {
265 if (zTranslatedNodes[i].key >= 0.0f) return i;
266 }
267 return zTranslatedNodes.size();
268}
269
270template <typename V>
Chris Craikf158b492016-01-12 14:45:08 -0800271void FrameBuilder::defer3dChildren(ChildrenSelectMode mode, const V& zTranslatedNodes) {
Chris Craik161f54b2015-11-05 11:08:52 -0800272 const int size = zTranslatedNodes.size();
273 if (size == 0
274 || (mode == ChildrenSelectMode::Negative&& zTranslatedNodes[0].key > 0.0f)
275 || (mode == ChildrenSelectMode::Positive && zTranslatedNodes[size - 1].key < 0.0f)) {
276 // no 3d children to draw
277 return;
278 }
279
280 /**
281 * Draw shadows and (potential) casters mostly in order, but allow the shadows of casters
282 * with very similar Z heights to draw together.
283 *
284 * This way, if Views A & B have the same Z height and are both casting shadows, the shadows are
285 * underneath both, and neither's shadow is drawn on top of the other.
286 */
287 const size_t nonNegativeIndex = findNonNegativeIndex(zTranslatedNodes);
288 size_t drawIndex, shadowIndex, endIndex;
289 if (mode == ChildrenSelectMode::Negative) {
290 drawIndex = 0;
291 endIndex = nonNegativeIndex;
292 shadowIndex = endIndex; // draw no shadows
293 } else {
294 drawIndex = nonNegativeIndex;
295 endIndex = size;
296 shadowIndex = drawIndex; // potentially draw shadow for each pos Z child
297 }
298
299 float lastCasterZ = 0.0f;
300 while (shadowIndex < endIndex || drawIndex < endIndex) {
301 if (shadowIndex < endIndex) {
302 const RenderNodeOp* casterNodeOp = zTranslatedNodes[shadowIndex].value;
303 const float casterZ = zTranslatedNodes[shadowIndex].key;
304 // attempt to render the shadow if the caster about to be drawn is its caster,
305 // OR if its caster's Z value is similar to the previous potential caster
306 if (shadowIndex == drawIndex || casterZ - lastCasterZ < 0.1f) {
307 deferShadow(*casterNodeOp);
308
309 lastCasterZ = casterZ; // must do this even if current caster not casting a shadow
310 shadowIndex++;
311 continue;
312 }
313 }
314
315 const RenderNodeOp* childOp = zTranslatedNodes[drawIndex].value;
Chris Craik268a9c02015-12-09 18:05:12 -0800316 deferRenderNodeOpImpl(*childOp);
Chris Craik161f54b2015-11-05 11:08:52 -0800317 drawIndex++;
318 }
319}
320
Chris Craikf158b492016-01-12 14:45:08 -0800321void FrameBuilder::deferShadow(const RenderNodeOp& casterNodeOp) {
Chris Craikd3daa312015-11-06 10:59:56 -0800322 auto& node = *casterNodeOp.renderNode;
323 auto& properties = node.properties();
324
325 if (properties.getAlpha() <= 0.0f
326 || properties.getOutline().getAlpha() <= 0.0f
327 || !properties.getOutline().getPath()
328 || properties.getScaleX() == 0
329 || properties.getScaleY() == 0) {
330 // no shadow to draw
331 return;
332 }
333
334 const SkPath* casterOutlinePath = properties.getOutline().getPath();
335 const SkPath* revealClipPath = properties.getRevealClip().getPath();
336 if (revealClipPath && revealClipPath->isEmpty()) return;
337
338 float casterAlpha = properties.getAlpha() * properties.getOutline().getAlpha();
339
340 // holds temporary SkPath to store the result of intersections
341 SkPath* frameAllocatedPath = nullptr;
342 const SkPath* casterPath = casterOutlinePath;
343
344 // intersect the shadow-casting path with the reveal, if present
345 if (revealClipPath) {
346 frameAllocatedPath = createFrameAllocatedPath();
347
348 Op(*casterPath, *revealClipPath, kIntersect_SkPathOp, frameAllocatedPath);
349 casterPath = frameAllocatedPath;
350 }
351
352 // intersect the shadow-casting path with the clipBounds, if present
353 if (properties.getClippingFlags() & CLIP_TO_CLIP_BOUNDS) {
354 if (!frameAllocatedPath) {
355 frameAllocatedPath = createFrameAllocatedPath();
356 }
357 Rect clipBounds;
358 properties.getClippingRectForFlags(CLIP_TO_CLIP_BOUNDS, &clipBounds);
359 SkPath clipBoundsPath;
360 clipBoundsPath.addRect(clipBounds.left, clipBounds.top,
361 clipBounds.right, clipBounds.bottom);
362
363 Op(*casterPath, clipBoundsPath, kIntersect_SkPathOp, frameAllocatedPath);
364 casterPath = frameAllocatedPath;
365 }
366
Chris Craik6e068c012016-01-15 16:15:30 -0800367 if (CC_LIKELY(!mCanvasState.getRenderTargetClipBounds().isEmpty())) {
368 Matrix4 shadowMatrixXY(casterNodeOp.localMatrix);
369 Matrix4 shadowMatrixZ(casterNodeOp.localMatrix);
370 node.applyViewPropertyTransforms(shadowMatrixXY, false);
371 node.applyViewPropertyTransforms(shadowMatrixZ, true);
372
Chris Craik3a5811b2016-03-22 15:03:08 -0700373 sp<TessellationCache::ShadowTask> task = mCaches.tessellationCache.getShadowTask(
Chris Craik6e068c012016-01-15 16:15:30 -0800374 mCanvasState.currentTransform(),
375 mCanvasState.getLocalClipBounds(),
376 casterAlpha >= 1.0f,
377 casterPath,
378 &shadowMatrixXY, &shadowMatrixZ,
379 mCanvasState.currentSnapshot()->getRelativeLightCenter(),
380 mLightRadius);
381 ShadowOp* shadowOp = mAllocator.create<ShadowOp>(task, casterAlpha);
382 BakedOpState* bakedOpState = BakedOpState::tryShadowOpConstruct(
383 mAllocator, *mCanvasState.writableSnapshot(), shadowOp);
384 if (CC_LIKELY(bakedOpState)) {
385 currentLayer().deferUnmergeableOp(mAllocator, bakedOpState, OpBatchType::Shadow);
386 }
Chris Craikd3daa312015-11-06 10:59:56 -0800387 }
Chris Craik161f54b2015-11-05 11:08:52 -0800388}
Chris Craikd3daa312015-11-06 10:59:56 -0800389
Chris Craikf158b492016-01-12 14:45:08 -0800390void FrameBuilder::deferProjectedChildren(const RenderNode& renderNode) {
Florin Malitaeecff562015-12-21 10:43:01 -0500391 int count = mCanvasState.save(SaveFlags::MatrixClip);
Chris Craik678ff812016-03-01 13:27:54 -0800392 const SkPath* projectionReceiverOutline = renderNode.properties().getOutline().getPath();
Chris Craik8d1f2122015-11-24 16:40:09 -0800393
Chris Craik678ff812016-03-01 13:27:54 -0800394 SkPath transformedMaskPath; // on stack, since BakedOpState makes a deep copy
395 if (projectionReceiverOutline) {
396 // transform the mask for this projector into render target space
397 // TODO: consider combining both transforms by stashing transform instead of applying
398 SkMatrix skCurrentTransform;
399 mCanvasState.currentTransform()->copyTo(skCurrentTransform);
400 projectionReceiverOutline->transform(
401 skCurrentTransform,
402 &transformedMaskPath);
403 mCanvasState.setProjectionPathMask(mAllocator, &transformedMaskPath);
404 }
Chris Craik8d1f2122015-11-24 16:40:09 -0800405
Chris Craik8d1f2122015-11-24 16:40:09 -0800406 for (size_t i = 0; i < renderNode.mProjectedNodes.size(); i++) {
407 RenderNodeOp* childOp = renderNode.mProjectedNodes[i];
Chris Craika748c082016-03-01 18:48:37 -0800408 RenderNode& childNode = *childOp->renderNode;
Chris Craik678ff812016-03-01 13:27:54 -0800409
Chris Craika748c082016-03-01 18:48:37 -0800410 // Draw child if it has content, but ignore state in childOp - matrix already applied to
411 // transformFromCompositingAncestor, and record-time clip is ignored when projecting
412 if (!childNode.nothingToDraw()) {
413 int restoreTo = mCanvasState.save(SaveFlags::MatrixClip);
Chris Craik678ff812016-03-01 13:27:54 -0800414
Chris Craika748c082016-03-01 18:48:37 -0800415 // Apply transform between ancestor and projected descendant
416 mCanvasState.concatMatrix(childOp->transformFromCompositingAncestor);
417
418 deferNodePropsAndOps(childNode);
419
420 mCanvasState.restoreToCount(restoreTo);
421 }
Chris Craik8d1f2122015-11-24 16:40:09 -0800422 }
Chris Craik8d1f2122015-11-24 16:40:09 -0800423 mCanvasState.restoreToCount(count);
424}
425
Chris Craikb565df12015-10-05 13:00:52 -0700426/**
Chris Craikf158b492016-01-12 14:45:08 -0800427 * Used to define a list of lambdas referencing private FrameBuilder::onXX::defer() methods.
Chris Craikb565df12015-10-05 13:00:52 -0700428 *
Chris Craik8d1f2122015-11-24 16:40:09 -0800429 * This allows opIds embedded in the RecordedOps to be used for dispatching to these lambdas.
Chris Craikf158b492016-01-12 14:45:08 -0800430 * E.g. a BitmapOp op then would be dispatched to FrameBuilder::onBitmapOp(const BitmapOp&)
Chris Craikb565df12015-10-05 13:00:52 -0700431 */
Chris Craik6fe991e52015-10-20 09:39:42 -0700432#define OP_RECEIVER(Type) \
Chris Craikf158b492016-01-12 14:45:08 -0800433 [](FrameBuilder& frameBuilder, const RecordedOp& op) { frameBuilder.defer##Type(static_cast<const Type&>(op)); },
434void FrameBuilder::deferNodeOps(const RenderNode& renderNode) {
435 typedef void (*OpDispatcher) (FrameBuilder& frameBuilder, const RecordedOp& op);
Chris Craik7cbf63d2016-01-06 13:46:52 -0800436 static OpDispatcher receivers[] = BUILD_DEFERRABLE_OP_LUT(OP_RECEIVER);
Chris Craik8d1f2122015-11-24 16:40:09 -0800437
438 // can't be null, since DL=null node rejection happens before deferNodePropsAndOps
439 const DisplayList& displayList = *(renderNode.getDisplayList());
Chris Craikb36af872015-10-16 14:23:12 -0700440 for (const DisplayList::Chunk& chunk : displayList.getChunks()) {
Chris Craik161f54b2015-11-05 11:08:52 -0800441 FatVector<ZRenderNodeOpPair, 16> zTranslatedNodes;
442 buildZSortedChildList(&zTranslatedNodes, displayList, chunk);
443
444 defer3dChildren(ChildrenSelectMode::Negative, zTranslatedNodes);
Chris Craikb565df12015-10-05 13:00:52 -0700445 for (size_t opIndex = chunk.beginOpIndex; opIndex < chunk.endOpIndex; opIndex++) {
Chris Craikb36af872015-10-16 14:23:12 -0700446 const RecordedOp* op = displayList.getOps()[opIndex];
Chris Craikb565df12015-10-05 13:00:52 -0700447 receivers[op->opId](*this, *op);
Chris Craik8d1f2122015-11-24 16:40:09 -0800448
449 if (CC_UNLIKELY(!renderNode.mProjectedNodes.empty()
450 && displayList.projectionReceiveIndex >= 0
451 && static_cast<int>(opIndex) == displayList.projectionReceiveIndex)) {
452 deferProjectedChildren(renderNode);
453 }
Chris Craikb565df12015-10-05 13:00:52 -0700454 }
Chris Craik161f54b2015-11-05 11:08:52 -0800455 defer3dChildren(ChildrenSelectMode::Positive, zTranslatedNodes);
Chris Craikb565df12015-10-05 13:00:52 -0700456 }
457}
458
Chris Craikf158b492016-01-12 14:45:08 -0800459void FrameBuilder::deferRenderNodeOpImpl(const RenderNodeOp& op) {
Chris Craik161f54b2015-11-05 11:08:52 -0800460 if (op.renderNode->nothingToDraw()) return;
Florin Malitaeecff562015-12-21 10:43:01 -0500461 int count = mCanvasState.save(SaveFlags::MatrixClip);
Chris Craikb565df12015-10-05 13:00:52 -0700462
Chris Craike4db79d2015-12-22 16:32:23 -0800463 // apply state from RecordedOp (clip first, since op's clip is transformed by current matrix)
464 mCanvasState.writableSnapshot()->mutateClipArea().applyClip(op.localClip,
465 *mCanvasState.currentSnapshot()->transform);
Chris Craikb565df12015-10-05 13:00:52 -0700466 mCanvasState.concatMatrix(op.localMatrix);
Chris Craikb565df12015-10-05 13:00:52 -0700467
Chris Craik0b7e8242015-10-28 16:50:44 -0700468 // then apply state from node properties, and defer ops
469 deferNodePropsAndOps(*op.renderNode);
470
Chris Craik6fe991e52015-10-20 09:39:42 -0700471 mCanvasState.restoreToCount(count);
Chris Craikb565df12015-10-05 13:00:52 -0700472}
473
Chris Craikf158b492016-01-12 14:45:08 -0800474void FrameBuilder::deferRenderNodeOp(const RenderNodeOp& op) {
Chris Craik161f54b2015-11-05 11:08:52 -0800475 if (!op.skipInOrderDraw) {
Chris Craik268a9c02015-12-09 18:05:12 -0800476 deferRenderNodeOpImpl(op);
Chris Craik161f54b2015-11-05 11:08:52 -0800477 }
478}
479
Chris Craik386aa032015-12-07 17:08:25 -0800480/**
481 * Defers an unmergeable, strokeable op, accounting correctly
482 * for paint's style on the bounds being computed.
483 */
Chris Craik3a5811b2016-03-22 15:03:08 -0700484const BakedOpState* FrameBuilder::deferStrokeableOp(const RecordedOp& op, batchid_t batchId,
Chris Craik386aa032015-12-07 17:08:25 -0800485 BakedOpState::StrokeBehavior strokeBehavior) {
486 // Note: here we account for stroke when baking the op
487 BakedOpState* bakedState = BakedOpState::tryStrokeableOpConstruct(
Chris Craike4db79d2015-12-22 16:32:23 -0800488 mAllocator, *mCanvasState.writableSnapshot(), op, strokeBehavior);
Chris Craik3a5811b2016-03-22 15:03:08 -0700489 if (!bakedState) return nullptr; // quick rejected
Chris Craik386aa032015-12-07 17:08:25 -0800490 currentLayer().deferUnmergeableOp(mAllocator, bakedState, batchId);
Chris Craik3a5811b2016-03-22 15:03:08 -0700491 return bakedState;
Chris Craik386aa032015-12-07 17:08:25 -0800492}
493
494/**
495 * Returns batch id for tessellatable shapes, based on paint. Checks to see if path effect/AA will
496 * be used, since they trigger significantly different rendering paths.
497 *
498 * Note: not used for lines/points, since they don't currently support path effects.
499 */
500static batchid_t tessBatchId(const RecordedOp& op) {
501 const SkPaint& paint = *(op.paint);
Chris Craikb565df12015-10-05 13:00:52 -0700502 return paint.getPathEffect()
503 ? OpBatchType::AlphaMaskTexture
504 : (paint.isAntiAlias() ? OpBatchType::AlphaVertices : OpBatchType::Vertices);
505}
506
Chris Craikf158b492016-01-12 14:45:08 -0800507void FrameBuilder::deferArcOp(const ArcOp& op) {
Chris Craik268a9c02015-12-09 18:05:12 -0800508 deferStrokeableOp(op, tessBatchId(op));
Chris Craik386aa032015-12-07 17:08:25 -0800509}
510
Chris Craikb87eadd2016-01-06 09:16:05 -0800511static bool hasMergeableClip(const BakedOpState& state) {
512 return state.computedState.clipState
513 || state.computedState.clipState->mode == ClipMode::Rectangle;
514}
515
Chris Craikf158b492016-01-12 14:45:08 -0800516void FrameBuilder::deferBitmapOp(const BitmapOp& op) {
Chris Craik15c3f192015-12-03 12:16:56 -0800517 BakedOpState* bakedState = tryBakeOpState(op);
518 if (!bakedState) return; // quick rejected
Chris Craikb565df12015-10-05 13:00:52 -0700519
Chris Craik15c3f192015-12-03 12:16:56 -0800520 // Don't merge non-simply transformed or neg scale ops, SET_TEXTURE doesn't handle rotation
521 // Don't merge A8 bitmaps - the paint's color isn't compared by mergeId, or in
522 // MergingDrawBatch::canMergeWith()
523 if (bakedState->computedState.transform.isSimple()
524 && bakedState->computedState.transform.positiveScale()
525 && PaintUtils::getXfermodeDirect(op.paint) == SkXfermode::kSrcOver_Mode
Chris Craikb87eadd2016-01-06 09:16:05 -0800526 && op.bitmap->colorType() != kAlpha_8_SkColorType
527 && hasMergeableClip(*bakedState)) {
Chris Craikb250a832016-01-11 19:28:17 -0800528 mergeid_t mergeId = reinterpret_cast<mergeid_t>(op.bitmap->getGenerationID());
Chris Craik15c3f192015-12-03 12:16:56 -0800529 // TODO: AssetAtlas in mergeId
530 currentLayer().deferMergeableOp(mAllocator, bakedState, OpBatchType::Bitmap, mergeId);
531 } else {
532 currentLayer().deferUnmergeableOp(mAllocator, bakedState, OpBatchType::Bitmap);
533 }
Chris Craikb565df12015-10-05 13:00:52 -0700534}
535
Chris Craikf158b492016-01-12 14:45:08 -0800536void FrameBuilder::deferBitmapMeshOp(const BitmapMeshOp& op) {
Chris Craikf09ff5a2015-12-08 17:21:58 -0800537 BakedOpState* bakedState = tryBakeOpState(op);
538 if (!bakedState) return; // quick rejected
539 currentLayer().deferUnmergeableOp(mAllocator, bakedState, OpBatchType::Bitmap);
540}
541
Chris Craikf158b492016-01-12 14:45:08 -0800542void FrameBuilder::deferBitmapRectOp(const BitmapRectOp& op) {
Chris Craikf09ff5a2015-12-08 17:21:58 -0800543 BakedOpState* bakedState = tryBakeOpState(op);
544 if (!bakedState) return; // quick rejected
545 currentLayer().deferUnmergeableOp(mAllocator, bakedState, OpBatchType::Bitmap);
546}
547
Doris Liu766431a2016-02-04 22:17:11 +0000548void FrameBuilder::deferVectorDrawableOp(const VectorDrawableOp& op) {
549 const SkBitmap& bitmap = op.vectorDrawable->getBitmapUpdateIfDirty();
550 SkPaint* paint = op.vectorDrawable->getPaint();
John Reck7df9ff22016-02-10 16:08:08 -0800551 const BitmapRectOp* resolvedOp = mAllocator.create_trivial<BitmapRectOp>(op.unmappedBounds,
Doris Liu766431a2016-02-04 22:17:11 +0000552 op.localMatrix,
553 op.localClip,
554 paint,
555 &bitmap,
556 Rect(bitmap.width(), bitmap.height()));
557 deferBitmapRectOp(*resolvedOp);
558}
559
Chris Craikf158b492016-01-12 14:45:08 -0800560void FrameBuilder::deferCirclePropsOp(const CirclePropsOp& op) {
Chris Craik268a9c02015-12-09 18:05:12 -0800561 // allocate a temporary oval op (with mAllocator, so it persists until render), so the
562 // renderer doesn't have to handle the RoundRectPropsOp type, and so state baking is simple.
563 float x = *(op.x);
564 float y = *(op.y);
565 float radius = *(op.radius);
566 Rect unmappedBounds(x - radius, y - radius, x + radius, y + radius);
John Reck7df9ff22016-02-10 16:08:08 -0800567 const OvalOp* resolvedOp = mAllocator.create_trivial<OvalOp>(
Chris Craik268a9c02015-12-09 18:05:12 -0800568 unmappedBounds,
569 op.localMatrix,
Chris Craike4db79d2015-12-22 16:32:23 -0800570 op.localClip,
Chris Craik268a9c02015-12-09 18:05:12 -0800571 op.paint);
572 deferOvalOp(*resolvedOp);
573}
574
Chris Craika2048482016-03-25 14:17:49 -0700575void FrameBuilder::deferColorOp(const ColorOp& op) {
576 BakedOpState* bakedState = tryBakeUnboundedOpState(op);
577 if (!bakedState) return; // quick rejected
578 currentLayer().deferUnmergeableOp(mAllocator, bakedState, OpBatchType::Vertices);
579}
580
Chris Craikf158b492016-01-12 14:45:08 -0800581void FrameBuilder::deferFunctorOp(const FunctorOp& op) {
Chris Craik4c3980b2016-03-15 14:20:18 -0700582 BakedOpState* bakedState = tryBakeUnboundedOpState(op);
Chris Craike29ce6f2015-12-10 16:25:13 -0800583 if (!bakedState) return; // quick rejected
Chris Craikd2dfd8f2015-12-16 14:27:20 -0800584 currentLayer().deferUnmergeableOp(mAllocator, bakedState, OpBatchType::Functor);
Chris Craike29ce6f2015-12-10 16:25:13 -0800585}
586
Chris Craikf158b492016-01-12 14:45:08 -0800587void FrameBuilder::deferLinesOp(const LinesOp& op) {
Chris Craik386aa032015-12-07 17:08:25 -0800588 batchid_t batch = op.paint->isAntiAlias() ? OpBatchType::AlphaVertices : OpBatchType::Vertices;
Chris Craik268a9c02015-12-09 18:05:12 -0800589 deferStrokeableOp(op, batch, BakedOpState::StrokeBehavior::Forced);
Chris Craik386aa032015-12-07 17:08:25 -0800590}
591
Chris Craikf158b492016-01-12 14:45:08 -0800592void FrameBuilder::deferOvalOp(const OvalOp& op) {
Chris Craik268a9c02015-12-09 18:05:12 -0800593 deferStrokeableOp(op, tessBatchId(op));
Chris Craik386aa032015-12-07 17:08:25 -0800594}
595
Chris Craikf158b492016-01-12 14:45:08 -0800596void FrameBuilder::deferPatchOp(const PatchOp& op) {
Chris Craikf09ff5a2015-12-08 17:21:58 -0800597 BakedOpState* bakedState = tryBakeOpState(op);
598 if (!bakedState) return; // quick rejected
599
600 if (bakedState->computedState.transform.isPureTranslate()
Chris Craikb87eadd2016-01-06 09:16:05 -0800601 && PaintUtils::getXfermodeDirect(op.paint) == SkXfermode::kSrcOver_Mode
602 && hasMergeableClip(*bakedState)) {
Chris Craikb250a832016-01-11 19:28:17 -0800603 mergeid_t mergeId = reinterpret_cast<mergeid_t>(op.bitmap->getGenerationID());
Chris Craikf09ff5a2015-12-08 17:21:58 -0800604 // TODO: AssetAtlas in mergeId
605
606 // Only use the MergedPatch batchId when merged, so Bitmap+Patch don't try to merge together
607 currentLayer().deferMergeableOp(mAllocator, bakedState, OpBatchType::MergedPatch, mergeId);
608 } else {
609 // Use Bitmap batchId since Bitmap+Patch use same shader
610 currentLayer().deferUnmergeableOp(mAllocator, bakedState, OpBatchType::Bitmap);
611 }
612}
613
Chris Craikf158b492016-01-12 14:45:08 -0800614void FrameBuilder::deferPathOp(const PathOp& op) {
Chris Craik3a5811b2016-03-22 15:03:08 -0700615 auto state = deferStrokeableOp(op, OpBatchType::AlphaMaskTexture);
616 if (CC_LIKELY(state)) {
617 mCaches.pathCache.precache(op.path, op.paint);
618 }
Chris Craik386aa032015-12-07 17:08:25 -0800619}
620
Chris Craikf158b492016-01-12 14:45:08 -0800621void FrameBuilder::deferPointsOp(const PointsOp& op) {
Chris Craik386aa032015-12-07 17:08:25 -0800622 batchid_t batch = op.paint->isAntiAlias() ? OpBatchType::AlphaVertices : OpBatchType::Vertices;
Chris Craik268a9c02015-12-09 18:05:12 -0800623 deferStrokeableOp(op, batch, BakedOpState::StrokeBehavior::Forced);
Chris Craika1717272015-11-19 13:02:43 -0800624}
625
Chris Craikf158b492016-01-12 14:45:08 -0800626void FrameBuilder::deferRectOp(const RectOp& op) {
Chris Craik268a9c02015-12-09 18:05:12 -0800627 deferStrokeableOp(op, tessBatchId(op));
Chris Craik386aa032015-12-07 17:08:25 -0800628}
629
Chris Craikf158b492016-01-12 14:45:08 -0800630void FrameBuilder::deferRoundRectOp(const RoundRectOp& op) {
Chris Craik3a5811b2016-03-22 15:03:08 -0700631 auto state = deferStrokeableOp(op, tessBatchId(op));
632 if (CC_LIKELY(state && !op.paint->getPathEffect())) {
633 // TODO: consider storing tessellation task in BakedOpState
634 mCaches.tessellationCache.precacheRoundRect(state->computedState.transform, *(op.paint),
635 op.unmappedBounds.getWidth(), op.unmappedBounds.getHeight(), op.rx, op.ry);
636 }
Chris Craikb565df12015-10-05 13:00:52 -0700637}
638
Chris Craikf158b492016-01-12 14:45:08 -0800639void FrameBuilder::deferRoundRectPropsOp(const RoundRectPropsOp& op) {
Chris Craik268a9c02015-12-09 18:05:12 -0800640 // allocate a temporary round rect op (with mAllocator, so it persists until render), so the
641 // renderer doesn't have to handle the RoundRectPropsOp type, and so state baking is simple.
John Reck7df9ff22016-02-10 16:08:08 -0800642 const RoundRectOp* resolvedOp = mAllocator.create_trivial<RoundRectOp>(
Chris Craik268a9c02015-12-09 18:05:12 -0800643 Rect(*(op.left), *(op.top), *(op.right), *(op.bottom)),
644 op.localMatrix,
Chris Craike4db79d2015-12-22 16:32:23 -0800645 op.localClip,
Chris Craik268a9c02015-12-09 18:05:12 -0800646 op.paint, *op.rx, *op.ry);
647 deferRoundRectOp(*resolvedOp);
648}
649
Chris Craikf158b492016-01-12 14:45:08 -0800650void FrameBuilder::deferSimpleRectsOp(const SimpleRectsOp& op) {
Chris Craik15c3f192015-12-03 12:16:56 -0800651 BakedOpState* bakedState = tryBakeOpState(op);
652 if (!bakedState) return; // quick rejected
653 currentLayer().deferUnmergeableOp(mAllocator, bakedState, OpBatchType::Vertices);
Chris Craikb565df12015-10-05 13:00:52 -0700654}
655
Chris Craikd7448e62015-12-15 10:34:36 -0800656static batchid_t textBatchId(const SkPaint& paint) {
657 // TODO: better handling of shader (since we won't care about color then)
658 return paint.getColor() == SK_ColorBLACK ? OpBatchType::Text : OpBatchType::ColorText;
659}
660
Chris Craikf158b492016-01-12 14:45:08 -0800661void FrameBuilder::deferTextOp(const TextOp& op) {
Chris Craik7c02cab2016-03-16 17:15:12 -0700662 BakedOpState* bakedState = BakedOpState::tryStrokeableOpConstruct(
663 mAllocator, *mCanvasState.writableSnapshot(), op,
664 BakedOpState::StrokeBehavior::StyleDefined);
Chris Craik15c3f192015-12-03 12:16:56 -0800665 if (!bakedState) return; // quick rejected
Chris Craika1717272015-11-19 13:02:43 -0800666
Chris Craikd7448e62015-12-15 10:34:36 -0800667 batchid_t batchId = textBatchId(*(op.paint));
Chris Craik15c3f192015-12-03 12:16:56 -0800668 if (bakedState->computedState.transform.isPureTranslate()
Chris Craikb87eadd2016-01-06 09:16:05 -0800669 && PaintUtils::getXfermodeDirect(op.paint) == SkXfermode::kSrcOver_Mode
670 && hasMergeableClip(*bakedState)) {
Chris Craik15c3f192015-12-03 12:16:56 -0800671 mergeid_t mergeId = reinterpret_cast<mergeid_t>(op.paint->getColor());
672 currentLayer().deferMergeableOp(mAllocator, bakedState, batchId, mergeId);
673 } else {
674 currentLayer().deferUnmergeableOp(mAllocator, bakedState, batchId);
675 }
Chris Craik3a5811b2016-03-22 15:03:08 -0700676
677 FontRenderer& fontRenderer = mCaches.fontRenderer.getFontRenderer();
678 auto& totalTransform = bakedState->computedState.transform;
679 if (totalTransform.isPureTranslate() || totalTransform.isPerspective()) {
680 fontRenderer.precache(op.paint, op.glyphs, op.glyphCount, SkMatrix::I());
681 } else {
682 // Partial transform case, see BakedOpDispatcher::renderTextOp
683 float sx, sy;
684 totalTransform.decomposeScale(sx, sy);
685 fontRenderer.precache(op.paint, op.glyphs, op.glyphCount, SkMatrix::MakeScale(
686 roundf(std::max(1.0f, sx)),
687 roundf(std::max(1.0f, sy))));
688 }
Chris Craika1717272015-11-19 13:02:43 -0800689}
690
Chris Craikf158b492016-01-12 14:45:08 -0800691void FrameBuilder::deferTextOnPathOp(const TextOnPathOp& op) {
Chris Craik4c3980b2016-03-15 14:20:18 -0700692 BakedOpState* bakedState = tryBakeUnboundedOpState(op);
Chris Craikd7448e62015-12-15 10:34:36 -0800693 if (!bakedState) return; // quick rejected
694 currentLayer().deferUnmergeableOp(mAllocator, bakedState, textBatchId(*(op.paint)));
Chris Craik3a5811b2016-03-22 15:03:08 -0700695
696 mCaches.fontRenderer.getFontRenderer().precache(
697 op.paint, op.glyphs, op.glyphCount, SkMatrix::I());
Chris Craikd7448e62015-12-15 10:34:36 -0800698}
699
Chris Craikf158b492016-01-12 14:45:08 -0800700void FrameBuilder::deferTextureLayerOp(const TextureLayerOp& op) {
John Reck417ed6d2016-03-22 16:01:08 -0700701 if (CC_UNLIKELY(!op.layer->isRenderable())) return;
Chris Craikd2dfd8f2015-12-16 14:27:20 -0800702 BakedOpState* bakedState = tryBakeOpState(op);
703 if (!bakedState) return; // quick rejected
704 currentLayer().deferUnmergeableOp(mAllocator, bakedState, OpBatchType::TextureLayer);
705}
706
Chris Craikf158b492016-01-12 14:45:08 -0800707void FrameBuilder::saveForLayer(uint32_t layerWidth, uint32_t layerHeight,
Chris Craik8ecf41c2015-11-16 10:27:59 -0800708 float contentTranslateX, float contentTranslateY,
709 const Rect& repaintRect,
710 const Vector3& lightCenter,
Chris Craik0b7e8242015-10-28 16:50:44 -0700711 const BeginLayerOp* beginLayerOp, RenderNode* renderNode) {
Florin Malitaeecff562015-12-21 10:43:01 -0500712 mCanvasState.save(SaveFlags::MatrixClip);
Chris Craik818c9fb2015-10-23 14:33:42 -0700713 mCanvasState.writableSnapshot()->initializeViewport(layerWidth, layerHeight);
Chris Craik6fe991e52015-10-20 09:39:42 -0700714 mCanvasState.writableSnapshot()->roundRectClipState = nullptr;
Chris Craik98787e62015-11-13 10:55:30 -0800715 mCanvasState.writableSnapshot()->setRelativeLightCenter(lightCenter);
Chris Craik8ecf41c2015-11-16 10:27:59 -0800716 mCanvasState.writableSnapshot()->transform->loadTranslate(
717 contentTranslateX, contentTranslateY, 0);
718 mCanvasState.writableSnapshot()->setClip(
719 repaintRect.left, repaintRect.top, repaintRect.right, repaintRect.bottom);
Chris Craik98787e62015-11-13 10:55:30 -0800720
Chris Craik8ecf41c2015-11-16 10:27:59 -0800721 // create a new layer repaint, and push its index on the stack
Chris Craikf158b492016-01-12 14:45:08 -0800722 mLayerStack.push_back(mLayerBuilders.size());
723 auto newFbo = mAllocator.create<LayerBuilder>(layerWidth, layerHeight,
Chris Craik84ad6142016-01-12 12:09:19 -0800724 repaintRect, beginLayerOp, renderNode);
Chris Craikf158b492016-01-12 14:45:08 -0800725 mLayerBuilders.push_back(newFbo);
Chris Craik0b7e8242015-10-28 16:50:44 -0700726}
727
Chris Craikf158b492016-01-12 14:45:08 -0800728void FrameBuilder::restoreForLayer() {
Chris Craik0b7e8242015-10-28 16:50:44 -0700729 // restore canvas, and pop finished layer off of the stack
730 mCanvasState.restore();
731 mLayerStack.pop_back();
732}
733
Chris Craikb87eadd2016-01-06 09:16:05 -0800734// TODO: defer time rejection (when bounds become empty) + tests
735// Option - just skip layers with no bounds at playback + defer?
Chris Craikf158b492016-01-12 14:45:08 -0800736void FrameBuilder::deferBeginLayerOp(const BeginLayerOp& op) {
Chris Craik8ecf41c2015-11-16 10:27:59 -0800737 uint32_t layerWidth = (uint32_t) op.unmappedBounds.getWidth();
738 uint32_t layerHeight = (uint32_t) op.unmappedBounds.getHeight();
739
740 auto previous = mCanvasState.currentSnapshot();
741 Vector3 lightCenter = previous->getRelativeLightCenter();
742
743 // Combine all transforms used to present saveLayer content:
744 // parent content transform * canvas transform * bounds offset
Chris Craikb87eadd2016-01-06 09:16:05 -0800745 Matrix4 contentTransform(*(previous->transform));
Chris Craik8ecf41c2015-11-16 10:27:59 -0800746 contentTransform.multiply(op.localMatrix);
747 contentTransform.translate(op.unmappedBounds.left, op.unmappedBounds.top);
748
749 Matrix4 inverseContentTransform;
750 inverseContentTransform.loadInverse(contentTransform);
751
752 // map the light center into layer-relative space
753 inverseContentTransform.mapPoint3d(lightCenter);
754
755 // Clip bounds of temporary layer to parent's clip rect, so:
756 Rect saveLayerBounds(layerWidth, layerHeight);
757 // 1) transform Rect(width, height) into parent's space
758 // note: left/top offsets put in contentTransform above
759 contentTransform.mapRect(saveLayerBounds);
760 // 2) intersect with parent's clip
761 saveLayerBounds.doIntersect(previous->getRenderTargetClip());
762 // 3) and transform back
763 inverseContentTransform.mapRect(saveLayerBounds);
764 saveLayerBounds.doIntersect(Rect(layerWidth, layerHeight));
765 saveLayerBounds.roundOut();
766
767 // if bounds are reduced, will clip the layer's area by reducing required bounds...
768 layerWidth = saveLayerBounds.getWidth();
769 layerHeight = saveLayerBounds.getHeight();
770 // ...and shifting drawing content to account for left/top side clipping
771 float contentTranslateX = -saveLayerBounds.left;
772 float contentTranslateY = -saveLayerBounds.top;
773
774 saveForLayer(layerWidth, layerHeight,
775 contentTranslateX, contentTranslateY,
776 Rect(layerWidth, layerHeight),
777 lightCenter,
778 &op, nullptr);
Chris Craik6fe991e52015-10-20 09:39:42 -0700779}
Chris Craikb565df12015-10-05 13:00:52 -0700780
Chris Craikf158b492016-01-12 14:45:08 -0800781void FrameBuilder::deferEndLayerOp(const EndLayerOp& /* ignored */) {
Chris Craik6fe991e52015-10-20 09:39:42 -0700782 const BeginLayerOp& beginLayerOp = *currentLayer().beginLayerOp;
Chris Craik6fe991e52015-10-20 09:39:42 -0700783 int finishedLayerIndex = mLayerStack.back();
Chris Craik0b7e8242015-10-28 16:50:44 -0700784
785 restoreForLayer();
Chris Craik6fe991e52015-10-20 09:39:42 -0700786
787 // record the draw operation into the previous layer's list of draw commands
788 // uses state from the associated beginLayerOp, since it has all the state needed for drawing
John Reck7df9ff22016-02-10 16:08:08 -0800789 LayerOp* drawLayerOp = mAllocator.create_trivial<LayerOp>(
Chris Craik6fe991e52015-10-20 09:39:42 -0700790 beginLayerOp.unmappedBounds,
791 beginLayerOp.localMatrix,
Chris Craike4db79d2015-12-22 16:32:23 -0800792 beginLayerOp.localClip,
Chris Craik818c9fb2015-10-23 14:33:42 -0700793 beginLayerOp.paint,
Chris Craikf158b492016-01-12 14:45:08 -0800794 &(mLayerBuilders[finishedLayerIndex]->offscreenBuffer));
Chris Craik6fe991e52015-10-20 09:39:42 -0700795 BakedOpState* bakedOpState = tryBakeOpState(*drawLayerOp);
796
797 if (bakedOpState) {
798 // Layer will be drawn into parent layer (which is now current, since we popped mLayerStack)
799 currentLayer().deferUnmergeableOp(mAllocator, bakedOpState, OpBatchType::Bitmap);
800 } else {
801 // Layer won't be drawn - delete its drawing batches to prevent it from doing any work
Chris Craikb87eadd2016-01-06 09:16:05 -0800802 // TODO: need to prevent any render work from being done
803 // - create layerop earlier for reject purposes?
Chris Craikf158b492016-01-12 14:45:08 -0800804 mLayerBuilders[finishedLayerIndex]->clear();
Chris Craik6fe991e52015-10-20 09:39:42 -0700805 return;
Chris Craikb565df12015-10-05 13:00:52 -0700806 }
807}
808
Chris Craikf158b492016-01-12 14:45:08 -0800809void FrameBuilder::deferBeginUnclippedLayerOp(const BeginUnclippedLayerOp& op) {
Chris Craikb87eadd2016-01-06 09:16:05 -0800810 Matrix4 boundsTransform(*(mCanvasState.currentSnapshot()->transform));
811 boundsTransform.multiply(op.localMatrix);
812
813 Rect dstRect(op.unmappedBounds);
814 boundsTransform.mapRect(dstRect);
815 dstRect.doIntersect(mCanvasState.currentSnapshot()->getRenderTargetClip());
816
Chris Craik4876de12016-02-25 16:54:08 -0800817 if (dstRect.isEmpty()) {
818 // Unclipped layer rejected - push a null op, so next EndUnclippedLayerOp is ignored
819 currentLayer().activeUnclippedSaveLayers.push_back(nullptr);
820 } else {
821 // Allocate a holding position for the layer object (copyTo will produce, copyFrom will consume)
822 OffscreenBuffer** layerHandle = mAllocator.create<OffscreenBuffer*>(nullptr);
Chris Craikb87eadd2016-01-06 09:16:05 -0800823
Chris Craik4876de12016-02-25 16:54:08 -0800824 /**
825 * First, defer an operation to copy out the content from the rendertarget into a layer.
826 */
827 auto copyToOp = mAllocator.create_trivial<CopyToLayerOp>(op, layerHandle);
828 BakedOpState* bakedState = BakedOpState::directConstruct(mAllocator,
829 &(currentLayer().repaintClip), dstRect, *copyToOp);
830 currentLayer().deferUnmergeableOp(mAllocator, bakedState, OpBatchType::CopyToLayer);
Chris Craikb87eadd2016-01-06 09:16:05 -0800831
Chris Craik4876de12016-02-25 16:54:08 -0800832 /**
833 * Defer a clear rect, so that clears from multiple unclipped layers can be drawn
834 * both 1) simultaneously, and 2) as long after the copyToLayer executes as possible
835 */
836 currentLayer().deferLayerClear(dstRect);
Chris Craikb87eadd2016-01-06 09:16:05 -0800837
Chris Craik4876de12016-02-25 16:54:08 -0800838 /**
839 * And stash an operation to copy that layer back under the rendertarget until
840 * a balanced EndUnclippedLayerOp is seen
841 */
842 auto copyFromOp = mAllocator.create_trivial<CopyFromLayerOp>(op, layerHandle);
843 bakedState = BakedOpState::directConstruct(mAllocator,
844 &(currentLayer().repaintClip), dstRect, *copyFromOp);
845 currentLayer().activeUnclippedSaveLayers.push_back(bakedState);
846 }
Chris Craikb87eadd2016-01-06 09:16:05 -0800847}
848
Chris Craikf158b492016-01-12 14:45:08 -0800849void FrameBuilder::deferEndUnclippedLayerOp(const EndUnclippedLayerOp& /* ignored */) {
Chris Craikb87eadd2016-01-06 09:16:05 -0800850 LOG_ALWAYS_FATAL_IF(currentLayer().activeUnclippedSaveLayers.empty(), "no layer to end!");
851
852 BakedOpState* copyFromLayerOp = currentLayer().activeUnclippedSaveLayers.back();
Chris Craikb87eadd2016-01-06 09:16:05 -0800853 currentLayer().activeUnclippedSaveLayers.pop_back();
Chris Craik4876de12016-02-25 16:54:08 -0800854 if (copyFromLayerOp) {
855 currentLayer().deferUnmergeableOp(mAllocator, copyFromLayerOp, OpBatchType::CopyFromLayer);
856 }
Chris Craikb87eadd2016-01-06 09:16:05 -0800857}
858
Chris Craik3a5811b2016-03-22 15:03:08 -0700859void FrameBuilder::finishDefer() {
860 mCaches.fontRenderer.endPrecaching();
861}
862
Chris Craikb565df12015-10-05 13:00:52 -0700863} // namespace uirenderer
864} // namespace android