1 /*
2 * Copyright 2019 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8 #include "src/gpu/ops/OpsTask.h"
9
10 #include "include/gpu/GrRecordingContext.h"
11 #include "src/core/SkRectPriv.h"
12 #include "src/core/SkScopeExit.h"
13 #include "src/core/SkTraceEvent.h"
14 #include "src/gpu/GrAttachment.h"
15 #include "src/gpu/GrAuditTrail.h"
16 #include "src/gpu/GrCaps.h"
17 #include "src/gpu/GrGpu.h"
18 #include "src/gpu/GrMemoryPool.h"
19 #include "src/gpu/GrOpFlushState.h"
20 #include "src/gpu/GrOpsRenderPass.h"
21 #include "src/gpu/GrRecordingContextPriv.h"
22 #include "src/gpu/GrRenderTarget.h"
23 #include "src/gpu/GrResourceAllocator.h"
24 #include "src/gpu/GrResourceProvider.h"
25 #include "src/gpu/GrTexture.h"
26 #include "src/gpu/geometry/GrRect.h"
27
28 ////////////////////////////////////////////////////////////////////////////////
29
30 namespace {
31
32 // Experimentally we have found that most combining occurs within the first 10 comparisons.
33 static const int kMaxOpMergeDistance = 10;
34 static const int kMaxOpChainDistance = 10;
35
36 ////////////////////////////////////////////////////////////////////////////////
37
can_reorder(const SkRect & a,const SkRect & b)38 inline bool can_reorder(const SkRect& a, const SkRect& b) { return !GrRectsOverlap(a, b); }
39
create_render_pass(GrGpu * gpu,GrRenderTarget * rt,bool useMSAASurface,GrAttachment * stencil,GrSurfaceOrigin origin,const SkIRect & bounds,GrLoadOp colorLoadOp,const std::array<float,4> & loadClearColor,GrLoadOp stencilLoadOp,GrStoreOp stencilStoreOp,const SkTArray<GrSurfaceProxy *,true> & sampledProxies,GrXferBarrierFlags renderPassXferBarriers)40 GrOpsRenderPass* create_render_pass(GrGpu* gpu,
41 GrRenderTarget* rt,
42 bool useMSAASurface,
43 GrAttachment* stencil,
44 GrSurfaceOrigin origin,
45 const SkIRect& bounds,
46 GrLoadOp colorLoadOp,
47 const std::array<float, 4>& loadClearColor,
48 GrLoadOp stencilLoadOp,
49 GrStoreOp stencilStoreOp,
50 const SkTArray<GrSurfaceProxy*, true>& sampledProxies,
51 GrXferBarrierFlags renderPassXferBarriers) {
52 const GrOpsRenderPass::LoadAndStoreInfo kColorLoadStoreInfo {
53 colorLoadOp,
54 GrStoreOp::kStore,
55 loadClearColor
56 };
57
58 // TODO:
59 // We would like to (at this level) only ever clear & discard. We would need
60 // to stop splitting up higher level OpsTasks for copyOps to achieve that.
61 // Note: we would still need SB loads and stores but they would happen at a
62 // lower level (inside the VK command buffer).
63 const GrOpsRenderPass::StencilLoadAndStoreInfo stencilLoadAndStoreInfo {
64 stencilLoadOp,
65 stencilStoreOp,
66 };
67
68 return gpu->getOpsRenderPass(rt, useMSAASurface, stencil, origin, bounds, kColorLoadStoreInfo,
69 stencilLoadAndStoreInfo, sampledProxies, renderPassXferBarriers);
70 }
71
72 } // anonymous namespace
73
74 ////////////////////////////////////////////////////////////////////////////////
75
76 namespace skgpu::v1 {
77
List(GrOp::Owner op)78 inline OpsTask::OpChain::List::List(GrOp::Owner op)
79 : fHead(std::move(op)), fTail(fHead.get()) {
80 this->validate();
81 }
82
List(List && that)83 inline OpsTask::OpChain::List::List(List&& that) { *this = std::move(that); }
84
operator =(List && that)85 inline OpsTask::OpChain::List& OpsTask::OpChain::List::operator=(List&& that) {
86 fHead = std::move(that.fHead);
87 fTail = that.fTail;
88 that.fTail = nullptr;
89 this->validate();
90 return *this;
91 }
92
popHead()93 inline GrOp::Owner OpsTask::OpChain::List::popHead() {
94 SkASSERT(fHead);
95 auto temp = fHead->cutChain();
96 std::swap(temp, fHead);
97 if (!fHead) {
98 SkASSERT(fTail == temp.get());
99 fTail = nullptr;
100 }
101 return temp;
102 }
103
removeOp(GrOp * op)104 inline GrOp::Owner OpsTask::OpChain::List::removeOp(GrOp* op) {
105 #ifdef SK_DEBUG
106 auto head = op;
107 while (head->prevInChain()) { head = head->prevInChain(); }
108 SkASSERT(head == fHead.get());
109 #endif
110 auto prev = op->prevInChain();
111 if (!prev) {
112 SkASSERT(op == fHead.get());
113 return this->popHead();
114 }
115 auto temp = prev->cutChain();
116 if (auto next = temp->cutChain()) {
117 prev->chainConcat(std::move(next));
118 } else {
119 SkASSERT(fTail == op);
120 fTail = prev;
121 }
122 this->validate();
123 return temp;
124 }
125
pushHead(GrOp::Owner op)126 inline void OpsTask::OpChain::List::pushHead(GrOp::Owner op) {
127 SkASSERT(op);
128 SkASSERT(op->isChainHead());
129 SkASSERT(op->isChainTail());
130 if (fHead) {
131 op->chainConcat(std::move(fHead));
132 fHead = std::move(op);
133 } else {
134 fHead = std::move(op);
135 fTail = fHead.get();
136 }
137 }
138
pushTail(GrOp::Owner op)139 inline void OpsTask::OpChain::List::pushTail(GrOp::Owner op) {
140 SkASSERT(op->isChainTail());
141 fTail->chainConcat(std::move(op));
142 fTail = fTail->nextInChain();
143 }
144
validate() const145 inline void OpsTask::OpChain::List::validate() const {
146 #ifdef SK_DEBUG
147 if (fHead) {
148 SkASSERT(fTail);
149 fHead->validateChain(fTail);
150 }
151 #endif
152 }
153
154 ////////////////////////////////////////////////////////////////////////////////
155
OpChain(GrOp::Owner op,GrProcessorSet::Analysis processorAnalysis,GrAppliedClip * appliedClip,const GrDstProxyView * dstProxyView)156 OpsTask::OpChain::OpChain(GrOp::Owner op, GrProcessorSet::Analysis processorAnalysis,
157 GrAppliedClip* appliedClip, const GrDstProxyView* dstProxyView)
158 : fList{std::move(op)}
159 , fProcessorAnalysis(processorAnalysis)
160 , fAppliedClip(appliedClip) {
161 if (fProcessorAnalysis.requiresDstTexture()) {
162 SkASSERT(dstProxyView && dstProxyView->proxy());
163 fDstProxyView = *dstProxyView;
164 }
165 fBounds = fList.head()->bounds();
166 }
167
visitProxies(const GrVisitProxyFunc & func) const168 void OpsTask::OpChain::visitProxies(const GrVisitProxyFunc& func) const {
169 if (fList.empty()) {
170 return;
171 }
172 for (const auto& op : GrOp::ChainRange<>(fList.head())) {
173 op.visitProxies(func);
174 }
175 if (fDstProxyView.proxy()) {
176 func(fDstProxyView.proxy(), GrMipmapped::kNo);
177 }
178 if (fAppliedClip) {
179 fAppliedClip->visitProxies(func);
180 }
181 }
182
deleteOps()183 void OpsTask::OpChain::deleteOps() {
184 while (!fList.empty()) {
185 // Since the value goes out of scope immediately, the GrOp::Owner deletes the op.
186 fList.popHead();
187 }
188 }
189
190 // Concatenates two op chains and attempts to merge ops across the chains. Assumes that we know that
191 // the two chains are chainable. Returns the new chain.
DoConcat(List chainA,List chainB,const GrCaps & caps,SkArenaAlloc * opsTaskArena,GrAuditTrail * auditTrail)192 OpsTask::OpChain::List OpsTask::OpChain::DoConcat(List chainA, List chainB, const GrCaps& caps,
193 SkArenaAlloc* opsTaskArena,
194 GrAuditTrail* auditTrail) {
195 // We process ops in chain b from head to tail. We attempt to merge with nodes in a, starting
196 // at chain a's tail and working toward the head. We produce one of the following outcomes:
197 // 1) b's head is merged into an op in a.
198 // 2) An op from chain a is merged into b's head. (In this case b's head gets processed again.)
199 // 3) b's head is popped from chain a and added at the tail of a.
200 // After result 3 we don't want to attempt to merge the next head of b with the new tail of a,
201 // as we assume merges were already attempted when chain b was created. So we keep track of the
202 // original tail of a and start our iteration of a there. We also track the bounds of the nodes
203 // appended to chain a that will be skipped for bounds testing. If the original tail of a is
204 // merged into an op in b (case 2) then we advance the "original tail" towards the head of a.
205 GrOp* origATail = chainA.tail();
206 SkRect skipBounds = SkRectPriv::MakeLargestInverted();
207 do {
208 int numMergeChecks = 0;
209 bool merged = false;
210 bool noSkip = (origATail == chainA.tail());
211 SkASSERT(noSkip == (skipBounds == SkRectPriv::MakeLargestInverted()));
212 bool canBackwardMerge = noSkip || can_reorder(chainB.head()->bounds(), skipBounds);
213 SkRect forwardMergeBounds = skipBounds;
214 GrOp* a = origATail;
215 while (a) {
216 bool canForwardMerge =
217 (a == chainA.tail()) || can_reorder(a->bounds(), forwardMergeBounds);
218 if (canForwardMerge || canBackwardMerge) {
219 auto result = a->combineIfPossible(chainB.head(), opsTaskArena, caps);
220 SkASSERT(result != GrOp::CombineResult::kCannotCombine);
221 merged = (result == GrOp::CombineResult::kMerged);
222 GrOP_INFO("\t\t: (%s opID: %u) -> Combining with (%s, opID: %u)\n",
223 chainB.head()->name(), chainB.head()->uniqueID(), a->name(),
224 a->uniqueID());
225 }
226 if (merged) {
227 GR_AUDIT_TRAIL_OPS_RESULT_COMBINED(auditTrail, a, chainB.head());
228 if (canBackwardMerge) {
229 // The GrOp::Owner releases the op.
230 chainB.popHead();
231 } else {
232 // We merged the contents of b's head into a. We will replace b's head with a in
233 // chain b.
234 SkASSERT(canForwardMerge);
235 if (a == origATail) {
236 origATail = a->prevInChain();
237 }
238 GrOp::Owner detachedA = chainA.removeOp(a);
239 // The GrOp::Owner releases the op.
240 chainB.popHead();
241 chainB.pushHead(std::move(detachedA));
242 if (chainA.empty()) {
243 // We merged all the nodes in chain a to chain b.
244 return chainB;
245 }
246 }
247 break;
248 } else {
249 if (++numMergeChecks == kMaxOpMergeDistance) {
250 break;
251 }
252 forwardMergeBounds.joinNonEmptyArg(a->bounds());
253 canBackwardMerge =
254 canBackwardMerge && can_reorder(chainB.head()->bounds(), a->bounds());
255 a = a->prevInChain();
256 }
257 }
258 // If we weren't able to merge b's head then pop b's head from chain b and make it the new
259 // tail of a.
260 if (!merged) {
261 chainA.pushTail(chainB.popHead());
262 skipBounds.joinNonEmptyArg(chainA.tail()->bounds());
263 }
264 } while (!chainB.empty());
265 return chainA;
266 }
267
268 // Attempts to concatenate the given chain onto our own and merge ops across the chains. Returns
269 // whether the operation succeeded. On success, the provided list will be returned empty.
tryConcat(List * list,GrProcessorSet::Analysis processorAnalysis,const GrDstProxyView & dstProxyView,const GrAppliedClip * appliedClip,const SkRect & bounds,const GrCaps & caps,SkArenaAlloc * opsTaskArena,GrAuditTrail * auditTrail)270 bool OpsTask::OpChain::tryConcat(
271 List* list, GrProcessorSet::Analysis processorAnalysis, const GrDstProxyView& dstProxyView,
272 const GrAppliedClip* appliedClip, const SkRect& bounds, const GrCaps& caps,
273 SkArenaAlloc* opsTaskArena, GrAuditTrail* auditTrail) {
274 SkASSERT(!fList.empty());
275 SkASSERT(!list->empty());
276 SkASSERT(fProcessorAnalysis.requiresDstTexture() == SkToBool(fDstProxyView.proxy()));
277 SkASSERT(processorAnalysis.requiresDstTexture() == SkToBool(dstProxyView.proxy()));
278 // All returns use explicit tuple constructor rather than {a, b} to work around old GCC bug.
279 if (fList.head()->classID() != list->head()->classID() ||
280 SkToBool(fAppliedClip) != SkToBool(appliedClip) ||
281 (fAppliedClip && *fAppliedClip != *appliedClip) ||
282 (fProcessorAnalysis.requiresNonOverlappingDraws() !=
283 processorAnalysis.requiresNonOverlappingDraws()) ||
284 (fProcessorAnalysis.requiresNonOverlappingDraws() &&
285 // Non-overlaping draws are only required when Ganesh will either insert a barrier,
286 // or read back a new dst texture between draws. In either case, we can neither
287 // chain nor combine overlapping Ops.
288 GrRectsTouchOrOverlap(fBounds, bounds)) ||
289 (fProcessorAnalysis.requiresDstTexture() != processorAnalysis.requiresDstTexture()) ||
290 (fProcessorAnalysis.requiresDstTexture() && fDstProxyView != dstProxyView)) {
291 return false;
292 }
293
294 SkDEBUGCODE(bool first = true;)
295 do {
296 switch (fList.tail()->combineIfPossible(list->head(), opsTaskArena, caps))
297 {
298 case GrOp::CombineResult::kCannotCombine:
299 // If an op supports chaining then it is required that chaining is transitive and
300 // that if any two ops in two different chains can merge then the two chains
301 // may also be chained together. Thus, we should only hit this on the first
302 // iteration.
303 SkASSERT(first);
304 return false;
305 case GrOp::CombineResult::kMayChain:
306 fList = DoConcat(std::move(fList), std::exchange(*list, List()), caps, opsTaskArena,
307 auditTrail);
308 // The above exchange cleared out 'list'. The list needs to be empty now for the
309 // loop to terminate.
310 SkASSERT(list->empty());
311 break;
312 case GrOp::CombineResult::kMerged: {
313 GrOP_INFO("\t\t: (%s opID: %u) -> Combining with (%s, opID: %u)\n",
314 list->tail()->name(), list->tail()->uniqueID(), list->head()->name(),
315 list->head()->uniqueID());
316 GR_AUDIT_TRAIL_OPS_RESULT_COMBINED(auditTrail, fList.tail(), list->head());
317 // The GrOp::Owner releases the op.
318 list->popHead();
319 break;
320 }
321 }
322 SkDEBUGCODE(first = false);
323 } while (!list->empty());
324
325 // The new ops were successfully merged and/or chained onto our own.
326 fBounds.joinPossiblyEmptyRect(bounds);
327 return true;
328 }
329
prependChain(OpChain * that,const GrCaps & caps,SkArenaAlloc * opsTaskArena,GrAuditTrail * auditTrail)330 bool OpsTask::OpChain::prependChain(OpChain* that, const GrCaps& caps, SkArenaAlloc* opsTaskArena,
331 GrAuditTrail* auditTrail) {
332 if (!that->tryConcat(&fList, fProcessorAnalysis, fDstProxyView, fAppliedClip, fBounds, caps,
333 opsTaskArena, auditTrail)) {
334 this->validate();
335 // append failed
336 return false;
337 }
338
339 // 'that' owns the combined chain. Move it into 'this'.
340 SkASSERT(fList.empty());
341 fList = std::move(that->fList);
342 fBounds = that->fBounds;
343
344 that->fDstProxyView.setProxyView({});
345 if (that->fAppliedClip && that->fAppliedClip->hasCoverageFragmentProcessor()) {
346 // Obliterates the processor.
347 that->fAppliedClip->detachCoverageFragmentProcessor();
348 }
349 this->validate();
350 return true;
351 }
352
appendOp(GrOp::Owner op,GrProcessorSet::Analysis processorAnalysis,const GrDstProxyView * dstProxyView,const GrAppliedClip * appliedClip,const GrCaps & caps,SkArenaAlloc * opsTaskArena,GrAuditTrail * auditTrail)353 GrOp::Owner OpsTask::OpChain::appendOp(
354 GrOp::Owner op, GrProcessorSet::Analysis processorAnalysis,
355 const GrDstProxyView* dstProxyView, const GrAppliedClip* appliedClip, const GrCaps& caps,
356 SkArenaAlloc* opsTaskArena, GrAuditTrail* auditTrail) {
357 const GrDstProxyView noDstProxyView;
358 if (!dstProxyView) {
359 dstProxyView = &noDstProxyView;
360 }
361 SkASSERT(op->isChainHead() && op->isChainTail());
362 SkRect opBounds = op->bounds();
363 List chain(std::move(op));
364 if (!this->tryConcat(&chain, processorAnalysis, *dstProxyView, appliedClip, opBounds, caps,
365 opsTaskArena, auditTrail)) {
366 // append failed, give the op back to the caller.
367 this->validate();
368 return chain.popHead();
369 }
370
371 SkASSERT(chain.empty());
372 this->validate();
373 return nullptr;
374 }
375
validate() const376 inline void OpsTask::OpChain::validate() const {
377 #ifdef SK_DEBUG
378 fList.validate();
379 for (const auto& op : GrOp::ChainRange<>(fList.head())) {
380 // Not using SkRect::contains because we allow empty rects.
381 SkASSERT(fBounds.fLeft <= op.bounds().fLeft && fBounds.fTop <= op.bounds().fTop &&
382 fBounds.fRight >= op.bounds().fRight && fBounds.fBottom >= op.bounds().fBottom);
383 }
384 #endif
385 }
386
387 ////////////////////////////////////////////////////////////////////////////////
388
OpsTask(GrDrawingManager * drawingMgr,GrSurfaceProxyView view,GrAuditTrail * auditTrail,sk_sp<GrArenas> arenas)389 OpsTask::OpsTask(GrDrawingManager* drawingMgr,
390 GrSurfaceProxyView view,
391 GrAuditTrail* auditTrail,
392 sk_sp<GrArenas> arenas)
393 : GrRenderTask()
394 , fAuditTrail(auditTrail)
395 , fUsesMSAASurface(view.asRenderTargetProxy()->numSamples() > 1)
396 , fTargetSwizzle(view.swizzle())
397 , fTargetOrigin(view.origin())
398 , fArenas{std::move(arenas)}
399 SkDEBUGCODE(, fNumClips(0)) {
400 this->addTarget(drawingMgr, view.detachProxy());
401 }
402
deleteOps()403 void OpsTask::deleteOps() {
404 for (auto& chain : fOpChains) {
405 chain.deleteOps();
406 }
407 fOpChains.reset();
408 }
409
~OpsTask()410 OpsTask::~OpsTask() {
411 this->deleteOps();
412 }
413
addOp(GrDrawingManager * drawingMgr,GrOp::Owner op,GrTextureResolveManager textureResolveManager,const GrCaps & caps)414 void OpsTask::addOp(GrDrawingManager* drawingMgr, GrOp::Owner op,
415 GrTextureResolveManager textureResolveManager, const GrCaps& caps) {
416 auto addDependency = [&](GrSurfaceProxy* p, GrMipmapped mipmapped) {
417 this->addDependency(drawingMgr, p, mipmapped, textureResolveManager, caps);
418 };
419
420 op->visitProxies(addDependency);
421
422 this->recordOp(std::move(op), false/*usesMSAA*/, GrProcessorSet::EmptySetAnalysis(), nullptr,
423 nullptr, caps);
424 }
425
addDrawOp(GrDrawingManager * drawingMgr,GrOp::Owner op,bool usesMSAA,const GrProcessorSet::Analysis & processorAnalysis,GrAppliedClip && clip,const GrDstProxyView & dstProxyView,GrTextureResolveManager textureResolveManager,const GrCaps & caps)426 void OpsTask::addDrawOp(GrDrawingManager* drawingMgr, GrOp::Owner op, bool usesMSAA,
427 const GrProcessorSet::Analysis& processorAnalysis, GrAppliedClip&& clip,
428 const GrDstProxyView& dstProxyView,
429 GrTextureResolveManager textureResolveManager, const GrCaps& caps) {
430 auto addDependency = [&](GrSurfaceProxy* p, GrMipmapped mipmapped) {
431 this->addSampledTexture(p);
432 this->addDependency(drawingMgr, p, mipmapped, textureResolveManager, caps);
433 };
434
435 op->visitProxies(addDependency);
436 clip.visitProxies(addDependency);
437 if (dstProxyView.proxy()) {
438 if (!(dstProxyView.dstSampleFlags() & GrDstSampleFlags::kAsInputAttachment)) {
439 this->addSampledTexture(dstProxyView.proxy());
440 }
441 if (dstProxyView.dstSampleFlags() & GrDstSampleFlags::kRequiresTextureBarrier) {
442 fRenderPassXferBarriers |= GrXferBarrierFlags::kTexture;
443 }
444 addDependency(dstProxyView.proxy(), GrMipmapped::kNo);
445 SkASSERT(!(dstProxyView.dstSampleFlags() & GrDstSampleFlags::kAsInputAttachment) ||
446 dstProxyView.offset().isZero());
447 }
448
449 if (processorAnalysis.usesNonCoherentHWBlending()) {
450 fRenderPassXferBarriers |= GrXferBarrierFlags::kBlend;
451 }
452
453 this->recordOp(std::move(op), usesMSAA, processorAnalysis, clip.doesClip() ? &clip : nullptr,
454 &dstProxyView, caps);
455 }
456
endFlush(GrDrawingManager * drawingMgr)457 void OpsTask::endFlush(GrDrawingManager* drawingMgr) {
458 fLastClipStackGenID = SK_InvalidUniqueID;
459 this->deleteOps();
460
461 fDeferredProxies.reset();
462 fSampledProxies.reset();
463 fAuditTrail = nullptr;
464
465 GrRenderTask::endFlush(drawingMgr);
466 }
467
onPrePrepare(GrRecordingContext * context)468 void OpsTask::onPrePrepare(GrRecordingContext* context) {
469 SkASSERT(this->isClosed());
470 // TODO: remove the check for discard here once reduced op splitting is turned on. Currently we
471 // can end up with OpsTasks that only have a discard load op and no ops. For vulkan validation
472 // we need to keep that discard and not drop it. Once we have reduce op list splitting enabled
473 // we shouldn't end up with OpsTasks with only discard.
474 if (this->isColorNoOp() ||
475 (fClippedContentBounds.isEmpty() && fColorLoadOp != GrLoadOp::kDiscard)) {
476 return;
477 }
478 TRACE_EVENT0("skia.gpu", TRACE_FUNC);
479
480 GrSurfaceProxyView dstView(sk_ref_sp(this->target(0)), fTargetOrigin, fTargetSwizzle);
481 for (const auto& chain : fOpChains) {
482 if (chain.shouldExecute()) {
483 chain.head()->prePrepare(context,
484 dstView,
485 chain.appliedClip(),
486 chain.dstProxyView(),
487 fRenderPassXferBarriers,
488 fColorLoadOp);
489 }
490 }
491 }
492
onPrepare(GrOpFlushState * flushState)493 void OpsTask::onPrepare(GrOpFlushState* flushState) {
494 SkASSERT(this->target(0)->peekRenderTarget());
495 SkASSERT(this->isClosed());
496 // TODO: remove the check for discard here once reduced op splitting is turned on. Currently we
497 // can end up with OpsTasks that only have a discard load op and no ops. For vulkan validation
498 // we need to keep that discard and not drop it. Once we have reduce op list splitting enabled
499 // we shouldn't end up with OpsTasks with only discard.
500 if (this->isColorNoOp() ||
501 (fClippedContentBounds.isEmpty() && fColorLoadOp != GrLoadOp::kDiscard)) {
502 return;
503 }
504 TRACE_EVENT0("skia.gpu", TRACE_FUNC);
505 #ifdef SK_ENABLE_STENCIL_CULLING_OHOS
506 fDisableStencilCulling = flushState->fDisableStencilCulling;
507 fHasStencilCullingOp = flushState->fHasStencilCullingOp;
508 #endif
509 flushState->setSampledProxyArray(&fSampledProxies);
510 GrSurfaceProxyView dstView(sk_ref_sp(this->target(0)), fTargetOrigin, fTargetSwizzle);
511 auto grGpu = flushState->gpu();
512 // Loop over the ops that haven't yet been prepared.
513 GrGpuResourceTag tag;
514 for (const auto& chain : fOpChains) {
515 if (chain.shouldExecute()) {
516 #ifdef SK_BUILD_FOR_ANDROID_FRAMEWORK
517 TRACE_EVENT0("skia.gpu", chain.head()->name());
518 #endif
519 tag = chain.head()->getGrOpTag();
520 if (grGpu && tag.isGrTagValid()) {
521 grGpu->setCurrentGrResourceTag(tag);
522 }
523 GrOpFlushState::OpArgs opArgs(chain.head(),
524 dstView,
525 fUsesMSAASurface,
526 chain.appliedClip(),
527 chain.dstProxyView(),
528 fRenderPassXferBarriers,
529 fColorLoadOp);
530
531 flushState->setOpArgs(&opArgs);
532
533 // Temporary debugging helper: for debugging prePrepare w/o going through DDLs
534 // Delete once most of the GrOps have an onPrePrepare.
535 // chain.head()->prePrepare(flushState->gpu()->getContext(), &this->target(0),
536 // chain.appliedClip());
537
538 // GrOp::prePrepare may or may not have been called at this point
539 chain.head()->prepare(flushState);
540 flushState->setOpArgs(nullptr);
541 if (grGpu && tag.isGrTagValid()) {
542 grGpu->popGrResourceTag();
543 }
544 }
545 }
546 flushState->setSampledProxyArray(nullptr);
547 }
548
549 // TODO: this is where GrOp::renderTarget is used (which is fine since it
550 // is at flush time). However, we need to store the RenderTargetProxy in the
551 // Ops and instantiate them here.
onExecute(GrOpFlushState * flushState)552 bool OpsTask::onExecute(GrOpFlushState* flushState) {
553 SkASSERT(this->numTargets() == 1);
554 GrRenderTargetProxy* proxy = this->target(0)->asRenderTargetProxy();
555 SkASSERT(proxy);
556 SK_AT_SCOPE_EXIT(proxy->clearArenas());
557
558 // TODO: remove the check for discard here once reduced op splitting is turned on. Currently we
559 // can end up with OpsTasks that only have a discard load op and no ops. For vulkan validation
560 // we need to keep that discard and not drop it. Once we have reduce op list splitting enabled
561 // we shouldn't end up with OpsTasks with only discard.
562 if (this->isColorNoOp() ||
563 (fClippedContentBounds.isEmpty() && fColorLoadOp != GrLoadOp::kDiscard)) {
564 return false;
565 }
566
567 TRACE_EVENT0("skia.gpu", TRACE_FUNC);
568
569 // Make sure load ops are not kClear if the GPU needs to use draws for clears
570 SkASSERT(fColorLoadOp != GrLoadOp::kClear ||
571 !flushState->gpu()->caps()->performColorClearsAsDraws());
572
573 const GrCaps& caps = *flushState->gpu()->caps();
574 GrRenderTarget* renderTarget = proxy->peekRenderTarget();
575 SkASSERT(renderTarget);
576
577 GrAttachment* stencil = nullptr;
578 if (proxy->needsStencil()) {
579 SkASSERT(proxy->canUseStencil(caps));
580 if (!flushState->resourceProvider()->attachStencilAttachment(renderTarget,
581 fUsesMSAASurface)) {
582 SkDebugf("WARNING: failed to attach a stencil buffer. Rendering will be skipped.\n");
583 return false;
584 }
585 stencil = renderTarget->getStencilAttachment(fUsesMSAASurface);
586 }
587
588 GrLoadOp stencilLoadOp;
589 switch (fInitialStencilContent) {
590 case StencilContent::kDontCare:
591 stencilLoadOp = GrLoadOp::kDiscard;
592 break;
593 case StencilContent::kUserBitsCleared:
594 SkASSERT(!caps.performStencilClearsAsDraws());
595 SkASSERT(stencil);
596 if (caps.discardStencilValuesAfterRenderPass()) {
597 // Always clear the stencil if it is being discarded after render passes. This is
598 // also an optimization because we are on a tiler and it avoids loading the values
599 // from memory.
600 stencilLoadOp = GrLoadOp::kClear;
601 break;
602 }
603 if (!stencil->hasPerformedInitialClear()) {
604 stencilLoadOp = GrLoadOp::kClear;
605 stencil->markHasPerformedInitialClear();
606 break;
607 }
608 // SurfaceDrawContexts are required to leave the user stencil bits in a cleared state
609 // once finished, meaning the stencil values will always remain cleared after the
610 // initial clear. Just fall through to reloading the existing (cleared) stencil values
611 // from memory.
612 [[fallthrough]];
613 case StencilContent::kPreserved:
614 SkASSERT(stencil);
615 stencilLoadOp = GrLoadOp::kLoad;
616 break;
617 }
618
619 // NOTE: If fMustPreserveStencil is set, then we are executing a surfaceDrawContext that split
620 // its opsTask.
621 //
622 // FIXME: We don't currently flag render passes that don't use stencil at all. In that case
623 // their store op might be "discard", and we currently make the assumption that a discard will
624 // not invalidate what's already in main memory. This is probably ok for now, but certainly
625 // something we want to address soon.
626 GrStoreOp stencilStoreOp = (caps.discardStencilValuesAfterRenderPass() && !fMustPreserveStencil)
627 ? GrStoreOp::kDiscard
628 : GrStoreOp::kStore;
629 #ifdef SK_ENABLE_STENCIL_CULLING_OHOS
630 if (!fDisableStencilCulling && fHasStencilCullingOp) {
631 TRACE_EVENT0("skia.gpu", "StencilCullingOpt Load/Store opt");
632 stencilLoadOp = GrLoadOp::kDiscard;
633 stencilStoreOp = GrStoreOp::kDiscard;
634 }
635 #endif
636 GrOpsRenderPass* renderPass = create_render_pass(flushState->gpu(),
637 proxy->peekRenderTarget(),
638 fUsesMSAASurface,
639 stencil,
640 fTargetOrigin,
641 fClippedContentBounds,
642 fColorLoadOp,
643 fLoadClearColor,
644 stencilLoadOp,
645 stencilStoreOp,
646 fSampledProxies,
647 fRenderPassXferBarriers);
648
649 if (!renderPass) {
650 return false;
651 }
652 flushState->setOpsRenderPass(renderPass);
653 renderPass->begin();
654
655 GrSurfaceProxyView dstView(sk_ref_sp(this->target(0)), fTargetOrigin, fTargetSwizzle);
656
657 auto grGpu = flushState->gpu();
658 // Draw all the generated geometry.
659 GrGpuResourceTag tag;
660 for (const auto& chain : fOpChains) {
661 if (!chain.shouldExecute()) {
662 continue;
663 }
664 #ifdef SK_BUILD_FOR_ANDROID_FRAMEWORK
665 TRACE_EVENT0("skia.gpu", chain.head()->name());
666 #endif
667 tag = chain.head()->getGrOpTag();
668 if (grGpu && tag.isGrTagValid()) {
669 grGpu->setCurrentGrResourceTag(tag);
670 }
671
672 GrOpFlushState::OpArgs opArgs(chain.head(),
673 dstView,
674 fUsesMSAASurface,
675 chain.appliedClip(),
676 chain.dstProxyView(),
677 fRenderPassXferBarriers,
678 fColorLoadOp);
679
680 flushState->setOpArgs(&opArgs);
681 chain.head()->execute(flushState, chain.bounds());
682 flushState->setOpArgs(nullptr);
683 if (grGpu && tag.isGrTagValid()) {
684 grGpu->popGrResourceTag();
685 }
686 }
687
688 renderPass->end();
689 flushState->gpu()->submit(renderPass);
690 flushState->setOpsRenderPass(nullptr);
691
692 return true;
693 }
694
setColorLoadOp(GrLoadOp op,std::array<float,4> color)695 void OpsTask::setColorLoadOp(GrLoadOp op, std::array<float, 4> color) {
696 fColorLoadOp = op;
697 fLoadClearColor = color;
698 if (GrLoadOp::kClear == fColorLoadOp) {
699 GrSurfaceProxy* proxy = this->target(0);
700 SkASSERT(proxy);
701 fTotalBounds = proxy->backingStoreBoundsRect();
702 }
703 }
704
reset()705 void OpsTask::reset() {
706 fDeferredProxies.reset();
707 fSampledProxies.reset();
708 fClippedContentBounds = SkIRect::MakeEmpty();
709 fTotalBounds = SkRect::MakeEmpty();
710 this->deleteOps();
711 fRenderPassXferBarriers = GrXferBarrierFlags::kNone;
712 }
713
canMerge(const OpsTask * opsTask) const714 bool OpsTask::canMerge(const OpsTask* opsTask) const {
715 return this->target(0) == opsTask->target(0) &&
716 fArenas == opsTask->fArenas &&
717 !opsTask->fCannotMergeBackward;
718 }
719
mergeFrom(SkSpan<const sk_sp<GrRenderTask>> tasks)720 int OpsTask::mergeFrom(SkSpan<const sk_sp<GrRenderTask>> tasks) {
721 int mergedCount = 0;
722 for (const sk_sp<GrRenderTask>& task : tasks) {
723 auto opsTask = task->asOpsTask();
724 if (!opsTask || !this->canMerge(opsTask)) {
725 break;
726 }
727 SkASSERT(fTargetSwizzle == opsTask->fTargetSwizzle);
728 SkASSERT(fTargetOrigin == opsTask->fTargetOrigin);
729 if (GrLoadOp::kClear == opsTask->fColorLoadOp) {
730 // TODO(11903): Go back to actually dropping ops tasks when we are merged with
731 // color clear.
732 return 0;
733 }
734 mergedCount += 1;
735 }
736 if (0 == mergedCount) {
737 return 0;
738 }
739
740 SkSpan<const sk_sp<OpsTask>> mergingNodes(
741 reinterpret_cast<const sk_sp<OpsTask>*>(tasks.data()), SkToSizeT(mergedCount));
742 int addlDeferredProxyCount = 0;
743 int addlProxyCount = 0;
744 int addlOpChainCount = 0;
745 for (const auto& toMerge : mergingNodes) {
746 addlDeferredProxyCount += toMerge->fDeferredProxies.count();
747 addlProxyCount += toMerge->fSampledProxies.count();
748 addlOpChainCount += toMerge->fOpChains.count();
749 fClippedContentBounds.join(toMerge->fClippedContentBounds);
750 fTotalBounds.join(toMerge->fTotalBounds);
751 fRenderPassXferBarriers |= toMerge->fRenderPassXferBarriers;
752 if (fInitialStencilContent == StencilContent::kDontCare) {
753 // Propogate the first stencil content that isn't kDontCare.
754 //
755 // Once the stencil has any kind of initial content that isn't kDontCare, then the
756 // inital contents of subsequent opsTasks that get merged in don't matter.
757 //
758 // (This works because the opsTask all target the same render target and are in
759 // painter's order. kPreserved obviously happens automatically with a merge, and kClear
760 // is also automatic because the contract is for ops to leave the stencil buffer in a
761 // cleared state when finished.)
762 fInitialStencilContent = toMerge->fInitialStencilContent;
763 }
764 fUsesMSAASurface |= toMerge->fUsesMSAASurface;
765 SkDEBUGCODE(fNumClips += toMerge->fNumClips);
766 }
767
768 fLastClipStackGenID = SK_InvalidUniqueID;
769 fDeferredProxies.reserve_back(addlDeferredProxyCount);
770 fSampledProxies.reserve_back(addlProxyCount);
771 fOpChains.reserve_back(addlOpChainCount);
772 for (const auto& toMerge : mergingNodes) {
773 for (GrRenderTask* renderTask : toMerge->dependents()) {
774 renderTask->replaceDependency(toMerge.get(), this);
775 }
776 for (GrRenderTask* renderTask : toMerge->dependencies()) {
777 renderTask->replaceDependent(toMerge.get(), this);
778 }
779 fDeferredProxies.move_back_n(toMerge->fDeferredProxies.count(),
780 toMerge->fDeferredProxies.data());
781 fSampledProxies.move_back_n(toMerge->fSampledProxies.count(),
782 toMerge->fSampledProxies.data());
783 fOpChains.move_back_n(toMerge->fOpChains.count(),
784 toMerge->fOpChains.data());
785 toMerge->fDeferredProxies.reset();
786 toMerge->fSampledProxies.reset();
787 toMerge->fOpChains.reset();
788 }
789 fMustPreserveStencil = mergingNodes.back()->fMustPreserveStencil;
790 return mergedCount;
791 }
792
resetForFullscreenClear(CanDiscardPreviousOps canDiscardPreviousOps)793 bool OpsTask::resetForFullscreenClear(CanDiscardPreviousOps canDiscardPreviousOps) {
794 if (CanDiscardPreviousOps::kYes == canDiscardPreviousOps || this->isEmpty()) {
795 this->deleteOps();
796 fDeferredProxies.reset();
797 fSampledProxies.reset();
798
799 // If the opsTask is using a render target which wraps a vulkan command buffer, we can't do
800 // a clear load since we cannot change the render pass that we are using. Thus we fall back
801 // to making a clear op in this case.
802 return !this->target(0)->asRenderTargetProxy()->wrapsVkSecondaryCB();
803 }
804
805 // Could not empty the task, so an op must be added to handle the clear
806 return false;
807 }
808
discard()809 void OpsTask::discard() {
810 // Discard calls to in-progress opsTasks are ignored. Calls at the start update the
811 // opsTasks' color & stencil load ops.
812 if (this->isEmpty()) {
813 fColorLoadOp = GrLoadOp::kDiscard;
814 fInitialStencilContent = StencilContent::kDontCare;
815 fTotalBounds.setEmpty();
816 }
817 }
818
819 ////////////////////////////////////////////////////////////////////////////////
820
821 #if GR_TEST_UTILS
dump(const SkString & label,SkString indent,bool printDependencies,bool close) const822 void OpsTask::dump(const SkString& label,
823 SkString indent,
824 bool printDependencies,
825 bool close) const {
826 GrRenderTask::dump(label, indent, printDependencies, false);
827
828 SkDebugf("%sfColorLoadOp: ", indent.c_str());
829 switch (fColorLoadOp) {
830 case GrLoadOp::kLoad:
831 SkDebugf("kLoad\n");
832 break;
833 case GrLoadOp::kClear:
834 SkDebugf("kClear {%g, %g, %g, %g}\n",
835 fLoadClearColor[0],
836 fLoadClearColor[1],
837 fLoadClearColor[2],
838 fLoadClearColor[3]);
839 break;
840 case GrLoadOp::kDiscard:
841 SkDebugf("kDiscard\n");
842 break;
843 }
844
845 SkDebugf("%sfInitialStencilContent: ", indent.c_str());
846 switch (fInitialStencilContent) {
847 case StencilContent::kDontCare:
848 SkDebugf("kDontCare\n");
849 break;
850 case StencilContent::kUserBitsCleared:
851 SkDebugf("kUserBitsCleared\n");
852 break;
853 case StencilContent::kPreserved:
854 SkDebugf("kPreserved\n");
855 break;
856 }
857
858 SkDebugf("%s%d ops:\n", indent.c_str(), fOpChains.count());
859 for (int i = 0; i < fOpChains.count(); ++i) {
860 SkDebugf("%s*******************************\n", indent.c_str());
861 if (!fOpChains[i].head()) {
862 SkDebugf("%s%d: <combined forward or failed instantiation>\n", indent.c_str(), i);
863 } else {
864 SkDebugf("%s%d: %s\n", indent.c_str(), i, fOpChains[i].head()->name());
865 SkRect bounds = fOpChains[i].bounds();
866 SkDebugf("%sClippedBounds: [L: %.2f, T: %.2f, R: %.2f, B: %.2f]\n",
867 indent.c_str(),
868 bounds.fLeft, bounds.fTop, bounds.fRight, bounds.fBottom);
869 for (const auto& op : GrOp::ChainRange<>(fOpChains[i].head())) {
870 SkString info = SkTabString(op.dumpInfo(), 1);
871 SkDebugf("%s%s\n", indent.c_str(), info.c_str());
872 bounds = op.bounds();
873 SkDebugf("%s\tClippedBounds: [L: %.2f, T: %.2f, R: %.2f, B: %.2f]\n",
874 indent.c_str(),
875 bounds.fLeft, bounds.fTop, bounds.fRight, bounds.fBottom);
876 }
877 }
878 }
879
880 if (close) {
881 SkDebugf("%s--------------------------------------------------------------\n\n",
882 indent.c_str());
883 }
884 }
885 #endif
886
887 #ifdef SK_DEBUG
visitProxies_debugOnly(const GrVisitProxyFunc & func) const888 void OpsTask::visitProxies_debugOnly(const GrVisitProxyFunc& func) const {
889 auto textureFunc = [ func ] (GrSurfaceProxy* tex, GrMipmapped mipmapped) {
890 func(tex, mipmapped);
891 };
892
893 for (const OpChain& chain : fOpChains) {
894 chain.visitProxies(textureFunc);
895 }
896 }
897
898 #endif
899
900 ////////////////////////////////////////////////////////////////////////////////
901
onMakeSkippable()902 void OpsTask::onMakeSkippable() {
903 this->deleteOps();
904 fDeferredProxies.reset();
905 fColorLoadOp = GrLoadOp::kLoad;
906 SkASSERT(this->isColorNoOp());
907 }
908
onIsUsed(GrSurfaceProxy * proxyToCheck) const909 bool OpsTask::onIsUsed(GrSurfaceProxy* proxyToCheck) const {
910 bool used = false;
911 for (GrSurfaceProxy* proxy : fSampledProxies) {
912 if (proxy == proxyToCheck) {
913 used = true;
914 break;
915 }
916 }
917 #ifdef SK_DEBUG
918 bool usedSlow = false;
919 auto visit = [ proxyToCheck, &usedSlow ] (GrSurfaceProxy* p, GrMipmapped) {
920 if (p == proxyToCheck) {
921 usedSlow = true;
922 }
923 };
924 this->visitProxies_debugOnly(visit);
925 SkASSERT(used == usedSlow);
926 #endif
927
928 return used;
929 }
930
gatherProxyIntervals(GrResourceAllocator * alloc) const931 void OpsTask::gatherProxyIntervals(GrResourceAllocator* alloc) const {
932 SkASSERT(this->isClosed());
933 if (this->isColorNoOp()) {
934 return;
935 }
936
937 for (int i = 0; i < fDeferredProxies.count(); ++i) {
938 SkASSERT(!fDeferredProxies[i]->isInstantiated());
939 // We give all the deferred proxies a write usage at the very start of flushing. This
940 // locks them out of being reused for the entire flush until they are read - and then
941 // they can be recycled. This is a bit unfortunate because a flush can proceed in waves
942 // with sub-flushes. The deferred proxies only need to be pinned from the start of
943 // the sub-flush in which they appear.
944 alloc->addInterval(fDeferredProxies[i], 0, 0, GrResourceAllocator::ActualUse::kNo);
945 }
946
947 GrSurfaceProxy* targetProxy = this->target(0);
948
949 // Add the interval for all the writes to this OpsTasks's target
950 if (fOpChains.count()) {
951 unsigned int cur = alloc->curOp();
952
953 alloc->addInterval(targetProxy, cur, cur + fOpChains.count() - 1,
954 GrResourceAllocator::ActualUse::kYes);
955 } else {
956 // This can happen if there is a loadOp (e.g., a clear) but no other draws. In this case we
957 // still need to add an interval for the destination so we create a fake op# for
958 // the missing clear op.
959 alloc->addInterval(targetProxy, alloc->curOp(), alloc->curOp(),
960 GrResourceAllocator::ActualUse::kYes);
961 alloc->incOps();
962 }
963
964 auto gather = [ alloc SkDEBUGCODE(, this) ] (GrSurfaceProxy* p, GrMipmapped) {
965 alloc->addInterval(p,
966 alloc->curOp(),
967 alloc->curOp(),
968 GrResourceAllocator::ActualUse::kYes
969 SkDEBUGCODE(, this->target(0) == p));
970 };
971 // TODO: visitProxies is expensive. Can we do this with fSampledProxies instead?
972 for (const OpChain& recordedOp : fOpChains) {
973 recordedOp.visitProxies(gather);
974
975 // Even though the op may have been (re)moved we still need to increment the op count to
976 // keep all the math consistent.
977 alloc->incOps();
978 }
979 }
980
recordOp(GrOp::Owner op,bool usesMSAA,GrProcessorSet::Analysis processorAnalysis,GrAppliedClip * clip,const GrDstProxyView * dstProxyView,const GrCaps & caps)981 void OpsTask::recordOp(
982 GrOp::Owner op, bool usesMSAA, GrProcessorSet::Analysis processorAnalysis,
983 GrAppliedClip* clip, const GrDstProxyView* dstProxyView, const GrCaps& caps) {
984 GrSurfaceProxy* proxy = this->target(0);
985 #ifdef SK_DEBUG
986 op->validate();
987 SkASSERT(processorAnalysis.requiresDstTexture() == (dstProxyView && dstProxyView->proxy()));
988 SkASSERT(proxy);
989 // A closed OpsTask should never receive new/more ops
990 SkASSERT(!this->isClosed());
991 // Ensure we can support dynamic msaa if the caller is trying to trigger it.
992 if (proxy->asRenderTargetProxy()->numSamples() == 1 && usesMSAA) {
993 SkASSERT(caps.supportsDynamicMSAA(proxy->asRenderTargetProxy()));
994 }
995 #endif
996
997 if (!op->bounds().isFinite()) {
998 return;
999 }
1000
1001 fUsesMSAASurface |= usesMSAA;
1002
1003 // Account for this op's bounds before we attempt to combine.
1004 // NOTE: The caller should have already called "op->setClippedBounds()" by now, if applicable.
1005 fTotalBounds.join(op->bounds());
1006
1007 // Check if there is an op we can combine with by linearly searching back until we either
1008 // 1) check every op
1009 // 2) intersect with something
1010 // 3) find a 'blocker'
1011 GR_AUDIT_TRAIL_ADD_OP(fAuditTrail, op.get(), proxy->uniqueID());
1012 GrOP_INFO("opsTask: %d Recording (%s, opID: %u)\n"
1013 "\tBounds [L: %.2f, T: %.2f R: %.2f B: %.2f]\n",
1014 this->uniqueID(),
1015 op->name(),
1016 op->uniqueID(),
1017 op->bounds().fLeft, op->bounds().fTop,
1018 op->bounds().fRight, op->bounds().fBottom);
1019 GrOP_INFO(SkTabString(op->dumpInfo(), 1).c_str());
1020 GrOP_INFO("\tOutcome:\n");
1021 int maxCandidates = std::min(kMaxOpChainDistance, fOpChains.count());
1022 if (maxCandidates) {
1023 int i = 0;
1024 while (true) {
1025 OpChain& candidate = fOpChains.fromBack(i);
1026 op = candidate.appendOp(std::move(op), processorAnalysis, dstProxyView, clip, caps,
1027 fArenas->arenaAlloc(), fAuditTrail);
1028 if (!op) {
1029 return;
1030 }
1031 // Stop going backwards if we would cause a painter's order violation.
1032 if (!can_reorder(candidate.bounds(), op->bounds())) {
1033 GrOP_INFO("\t\tBackward: Intersects with chain (%s, head opID: %u)\n",
1034 candidate.head()->name(), candidate.head()->uniqueID());
1035 break;
1036 }
1037 if (++i == maxCandidates) {
1038 GrOP_INFO("\t\tBackward: Reached max lookback or beginning of op array %d\n", i);
1039 break;
1040 }
1041 }
1042 } else {
1043 GrOP_INFO("\t\tBackward: FirstOp\n");
1044 }
1045 if (clip) {
1046 clip = fArenas->arenaAlloc()->make<GrAppliedClip>(std::move(*clip));
1047 SkDEBUGCODE(fNumClips++;)
1048 }
1049 fOpChains.emplace_back(std::move(op), processorAnalysis, clip, dstProxyView);
1050 }
1051
forwardCombine(const GrCaps & caps)1052 void OpsTask::forwardCombine(const GrCaps& caps) {
1053 SkASSERT(!this->isClosed());
1054 GrOP_INFO("opsTask: %d ForwardCombine %d ops:\n", this->uniqueID(), fOpChains.count());
1055
1056 for (int i = 0; i < fOpChains.count() - 1; ++i) {
1057 OpChain& chain = fOpChains[i];
1058 int maxCandidateIdx = std::min(i + kMaxOpChainDistance, fOpChains.count() - 1);
1059 int j = i + 1;
1060 while (true) {
1061 OpChain& candidate = fOpChains[j];
1062 if (candidate.prependChain(&chain, caps, fArenas->arenaAlloc(), fAuditTrail)) {
1063 break;
1064 }
1065 // Stop traversing if we would cause a painter's order violation.
1066 if (!can_reorder(chain.bounds(), candidate.bounds())) {
1067 GrOP_INFO(
1068 "\t\t%d: chain (%s head opID: %u) -> "
1069 "Intersects with chain (%s, head opID: %u)\n",
1070 i, chain.head()->name(), chain.head()->uniqueID(), candidate.head()->name(),
1071 candidate.head()->uniqueID());
1072 break;
1073 }
1074 if (++j > maxCandidateIdx) {
1075 GrOP_INFO("\t\t%d: chain (%s opID: %u) -> Reached max lookahead or end of array\n",
1076 i, chain.head()->name(), chain.head()->uniqueID());
1077 break;
1078 }
1079 }
1080 }
1081 }
1082
onMakeClosed(GrRecordingContext * rContext,SkIRect * targetUpdateBounds)1083 GrRenderTask::ExpectedOutcome OpsTask::onMakeClosed(GrRecordingContext* rContext,
1084 SkIRect* targetUpdateBounds) {
1085 this->forwardCombine(*rContext->priv().caps());
1086 if (!this->isColorNoOp()) {
1087 GrSurfaceProxy* proxy = this->target(0);
1088 // Use the entire backing store bounds since the GPU doesn't clip automatically to the
1089 // logical dimensions.
1090 SkRect clippedContentBounds = proxy->backingStoreBoundsRect();
1091 // TODO: If we can fix up GLPrograms test to always intersect the target proxy bounds
1092 // then we can simply assert here that the bounds intersect.
1093 if (clippedContentBounds.intersect(fTotalBounds)) {
1094 clippedContentBounds.roundOut(&fClippedContentBounds);
1095 *targetUpdateBounds = GrNativeRect::MakeIRectRelativeTo(
1096 fTargetOrigin,
1097 this->target(0)->backingStoreDimensions().height(),
1098 fClippedContentBounds);
1099 return ExpectedOutcome::kTargetDirty;
1100 }
1101 }
1102 return ExpectedOutcome::kTargetUnchanged;
1103 }
1104
1105 } // namespace skgpu::v1
1106