reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 1 | /* |
Greg Daniel | f41b2bd | 2019-08-22 16:19:24 -0400 | [diff] [blame] | 2 | * Copyright 2019 Google Inc. |
epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
Greg Daniel | f41b2bd | 2019-08-22 16:19:24 -0400 | [diff] [blame] | 8 | #ifndef GrOpsTask_DEFINED |
| 9 | #define GrOpsTask_DEFINED |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 10 | |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 11 | #include "include/core/SkMatrix.h" |
Greg Daniel | f41b2bd | 2019-08-22 16:19:24 -0400 | [diff] [blame] | 12 | #include "include/core/SkRefCnt.h" |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 13 | #include "include/core/SkStrokeRec.h" |
| 14 | #include "include/core/SkTypes.h" |
Robert Phillips | b7bfbc2 | 2020-07-01 12:55:01 -0400 | [diff] [blame] | 15 | #include "include/gpu/GrRecordingContext.h" |
Greg Daniel | f41b2bd | 2019-08-22 16:19:24 -0400 | [diff] [blame] | 16 | #include "include/private/SkColorData.h" |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 17 | #include "include/private/SkTArray.h" |
Greg Daniel | f41b2bd | 2019-08-22 16:19:24 -0400 | [diff] [blame] | 18 | #include "include/private/SkTDArray.h" |
Ben Wagner | 729a23f | 2019-05-17 16:29:34 -0400 | [diff] [blame] | 19 | #include "src/core/SkArenaAlloc.h" |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 20 | #include "src/core/SkClipStack.h" |
| 21 | #include "src/core/SkStringUtils.h" |
| 22 | #include "src/core/SkTLazy.h" |
| 23 | #include "src/gpu/GrAppliedClip.h" |
| 24 | #include "src/gpu/GrPathRendering.h" |
| 25 | #include "src/gpu/GrPrimitiveProcessor.h" |
Greg Daniel | f41b2bd | 2019-08-22 16:19:24 -0400 | [diff] [blame] | 26 | #include "src/gpu/GrRenderTask.h" |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 27 | #include "src/gpu/ops/GrDrawOp.h" |
| 28 | #include "src/gpu/ops/GrOp.h" |
Scroggo | 97c88c2 | 2011-05-11 14:05:25 +0000 | [diff] [blame] | 29 | |
joshualitt | 086cee1 | 2016-01-12 06:45:24 -0800 | [diff] [blame] | 30 | class GrAuditTrail; |
Greg Daniel | f21bf9e | 2019-08-22 20:12:20 +0000 | [diff] [blame] | 31 | class GrCaps; |
Greg Daniel | f41b2bd | 2019-08-22 16:19:24 -0400 | [diff] [blame] | 32 | class GrClearOp; |
| 33 | class GrGpuBuffer; |
Robert Phillips | c7635fa | 2016-10-28 13:25:24 -0400 | [diff] [blame] | 34 | class GrRenderTargetProxy; |
sugoi@google.com | 12b4e27 | 2012-12-06 20:13:11 +0000 | [diff] [blame] | 35 | |
Brian Salomon | 3b8486a | 2020-04-21 12:43:26 -0400 | [diff] [blame] | 36 | /** Observer is notified when a GrOpsTask is closed. */ |
| 37 | class GrOpsTaskClosedObserver { |
| 38 | public: |
| 39 | virtual ~GrOpsTaskClosedObserver() = 0; |
Brian Salomon | f1c9eae | 2020-05-01 15:00:34 -0400 | [diff] [blame] | 40 | /** |
| 41 | * Called when the GrOpsTask is closed. Must not add/remove observers to 'task'. |
| 42 | * The GrOpsTask will remove all its observers after it finishes calling wasClosed(). |
| 43 | */ |
Brian Salomon | 3b8486a | 2020-04-21 12:43:26 -0400 | [diff] [blame] | 44 | virtual void wasClosed(const GrOpsTask& task) = 0; |
| 45 | }; |
| 46 | |
Greg Daniel | f41b2bd | 2019-08-22 16:19:24 -0400 | [diff] [blame] | 47 | class GrOpsTask : public GrRenderTask { |
Brian Salomon | 54d212e | 2017-03-21 14:22:38 -0400 | [diff] [blame] | 48 | private: |
Greg Daniel | 524e28b | 2019-11-01 11:48:53 -0400 | [diff] [blame] | 49 | using DstProxyView = GrXferProcessor::DstProxyView; |
Brian Salomon | 54d212e | 2017-03-21 14:22:38 -0400 | [diff] [blame] | 50 | |
bsalomon@google.com | f660187 | 2012-08-28 21:11:35 +0000 | [diff] [blame] | 51 | public: |
Michael Ludwig | 28b0c5d | 2019-12-19 14:51:00 -0500 | [diff] [blame] | 52 | // The Arenas must outlive the GrOpsTask, either by preserving the context that owns |
Michael Ludwig | cb10e4d | 2019-12-12 13:59:20 -0500 | [diff] [blame] | 53 | // the pool, or by moving the pool to the DDL that takes over the GrOpsTask. |
Adlai Holler | d71b7b0 | 2020-06-08 15:55:00 -0400 | [diff] [blame] | 54 | GrOpsTask(GrDrawingManager*, GrRecordingContext::Arenas, GrSurfaceProxyView, GrAuditTrail*); |
Greg Daniel | f41b2bd | 2019-08-22 16:19:24 -0400 | [diff] [blame] | 55 | ~GrOpsTask() override; |
bsalomon | a73239a | 2015-04-28 13:35:17 -0700 | [diff] [blame] | 56 | |
Greg Daniel | f41b2bd | 2019-08-22 16:19:24 -0400 | [diff] [blame] | 57 | GrOpsTask* asOpsTask() override { return this; } |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 58 | |
Brian Salomon | f1c9eae | 2020-05-01 15:00:34 -0400 | [diff] [blame] | 59 | void addClosedObserver(GrOpsTaskClosedObserver* observer) { |
| 60 | SkASSERT(observer); |
| 61 | fClosedObservers.push_back(observer); |
| 62 | } |
| 63 | |
| 64 | void removeClosedObserver(GrOpsTaskClosedObserver* observer); |
Brian Salomon | 3b8486a | 2020-04-21 12:43:26 -0400 | [diff] [blame] | 65 | |
Brian Salomon | 588cec7 | 2018-11-14 13:56:37 -0500 | [diff] [blame] | 66 | bool isEmpty() const { return fOpChains.empty(); } |
Robert Phillips | f5442bb | 2017-04-17 14:18:34 -0400 | [diff] [blame] | 67 | |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 68 | /** |
bsalomon | a73239a | 2015-04-28 13:35:17 -0700 | [diff] [blame] | 69 | * Empties the draw buffer of any queued up draws. |
| 70 | */ |
Adlai Holler | d71b7b0 | 2020-06-08 15:55:00 -0400 | [diff] [blame] | 71 | void endFlush(GrDrawingManager*) override; |
Robert Phillips | f2361d2 | 2016-10-25 14:20:06 -0400 | [diff] [blame] | 72 | |
Robert Phillips | 29f3854 | 2019-10-16 09:20:25 -0400 | [diff] [blame] | 73 | void onPrePrepare(GrRecordingContext*) override; |
bsalomon | a73239a | 2015-04-28 13:35:17 -0700 | [diff] [blame] | 74 | /** |
bsalomon | dc43898 | 2016-08-31 11:53:49 -0700 | [diff] [blame] | 75 | * Together these two functions flush all queued up draws to GrCommandBuffer. The return value |
Brian Salomon | 1e41f4a | 2016-12-07 15:05:04 -0500 | [diff] [blame] | 76 | * of executeOps() indicates whether any commands were actually issued to the GPU. |
bsalomon | a73239a | 2015-04-28 13:35:17 -0700 | [diff] [blame] | 77 | */ |
Brian Osman | 407b342 | 2017-08-22 15:01:32 -0400 | [diff] [blame] | 78 | void onPrepare(GrOpFlushState* flushState) override; |
| 79 | bool onExecute(GrOpFlushState* flushState) override; |
bsalomon | a73239a | 2015-04-28 13:35:17 -0700 | [diff] [blame] | 80 | |
Michael Ludwig | fcdd061 | 2019-11-25 08:34:31 -0500 | [diff] [blame] | 81 | void addSampledTexture(GrSurfaceProxy* proxy) { |
| 82 | // This function takes a GrSurfaceProxy because all subsequent uses of the proxy do not |
| 83 | // require the specifics of GrTextureProxy, so this avoids a number of unnecessary virtual |
| 84 | // asTextureProxy() calls. However, sampling the proxy implicitly requires that the proxy |
| 85 | // be a texture. Eventually, when proxies are a unified type with flags, this can just |
| 86 | // assert that capability. |
| 87 | SkASSERT(proxy->asTextureProxy()); |
Greg Daniel | b20d7e5 | 2019-09-03 13:54:39 -0400 | [diff] [blame] | 88 | fSampledProxies.push_back(proxy); |
| 89 | } |
| 90 | |
Adlai Holler | d71b7b0 | 2020-06-08 15:55:00 -0400 | [diff] [blame] | 91 | void addOp(GrDrawingManager* drawingMgr, std::unique_ptr<GrOp> op, |
| 92 | GrTextureResolveManager textureResolveManager, const GrCaps& caps) { |
| 93 | auto addDependency = [ drawingMgr, textureResolveManager, &caps, this ] ( |
Brian Salomon | 7e67dca | 2020-07-21 09:27:25 -0400 | [diff] [blame] | 94 | GrSurfaceProxy* p, GrMipmapped mipmapped) { |
Adlai Holler | d71b7b0 | 2020-06-08 15:55:00 -0400 | [diff] [blame] | 95 | this->addDependency(drawingMgr, p, mipmapped, textureResolveManager, caps); |
Robert Phillips | b493eeb | 2017-09-13 13:10:52 -0400 | [diff] [blame] | 96 | }; |
| 97 | |
| 98 | op->visitProxies(addDependency); |
| 99 | |
Chris Dalton | 945ee65 | 2019-01-23 09:10:36 -0700 | [diff] [blame] | 100 | this->recordOp(std::move(op), GrProcessorSet::EmptySetAnalysis(), nullptr, nullptr, caps); |
Brian Salomon | 54d212e | 2017-03-21 14:22:38 -0400 | [diff] [blame] | 101 | } |
Robert Phillips | b493eeb | 2017-09-13 13:10:52 -0400 | [diff] [blame] | 102 | |
Adlai Holler | d71b7b0 | 2020-06-08 15:55:00 -0400 | [diff] [blame] | 103 | void addDrawOp(GrDrawingManager* drawingMgr, std::unique_ptr<GrDrawOp> op, |
| 104 | const GrProcessorSet::Analysis& processorAnalysis, |
Greg Daniel | 524e28b | 2019-11-01 11:48:53 -0400 | [diff] [blame] | 105 | GrAppliedClip&& clip, const DstProxyView& dstProxyView, |
Chris Dalton | 0875512 | 2019-08-05 16:13:47 -0600 | [diff] [blame] | 106 | GrTextureResolveManager textureResolveManager, const GrCaps& caps) { |
Adlai Holler | d71b7b0 | 2020-06-08 15:55:00 -0400 | [diff] [blame] | 107 | auto addDependency = [ drawingMgr, textureResolveManager, &caps, this ] ( |
Brian Salomon | 7e67dca | 2020-07-21 09:27:25 -0400 | [diff] [blame] | 108 | GrSurfaceProxy* p, GrMipmapped mipmapped) { |
Greg Daniel | b20d7e5 | 2019-09-03 13:54:39 -0400 | [diff] [blame] | 109 | this->addSampledTexture(p); |
Adlai Holler | d71b7b0 | 2020-06-08 15:55:00 -0400 | [diff] [blame] | 110 | this->addDependency(drawingMgr, p, mipmapped, textureResolveManager, caps); |
Robert Phillips | b493eeb | 2017-09-13 13:10:52 -0400 | [diff] [blame] | 111 | }; |
| 112 | |
| 113 | op->visitProxies(addDependency); |
| 114 | clip.visitProxies(addDependency); |
Greg Daniel | 524e28b | 2019-11-01 11:48:53 -0400 | [diff] [blame] | 115 | if (dstProxyView.proxy()) { |
| 116 | this->addSampledTexture(dstProxyView.proxy()); |
Brian Salomon | 7e67dca | 2020-07-21 09:27:25 -0400 | [diff] [blame] | 117 | addDependency(dstProxyView.proxy(), GrMipmapped::kNo); |
Greg Daniel | 9a18b08 | 2020-08-14 14:03:50 -0400 | [diff] [blame] | 118 | if (this->target(0).asTextureProxy() == dstProxyView.proxy()) { |
| 119 | // Since we are sampling and drawing to the same surface we will need to use |
| 120 | // texture barriers. |
| 121 | fUsesXferBarriers |= true; |
| 122 | } |
Robert Phillips | 2739ab0 | 2018-07-27 07:35:55 -0400 | [diff] [blame] | 123 | } |
Robert Phillips | b493eeb | 2017-09-13 13:10:52 -0400 | [diff] [blame] | 124 | |
Greg Daniel | 9a18b08 | 2020-08-14 14:03:50 -0400 | [diff] [blame] | 125 | fUsesXferBarriers |= processorAnalysis.usesNonCoherentHWBlending(); |
| 126 | |
Chris Dalton | 945ee65 | 2019-01-23 09:10:36 -0700 | [diff] [blame] | 127 | this->recordOp(std::move(op), processorAnalysis, clip.doesClip() ? &clip : nullptr, |
Greg Daniel | 524e28b | 2019-11-01 11:48:53 -0400 | [diff] [blame] | 128 | &dstProxyView, caps); |
Brian Salomon | 69868af | 2016-12-22 15:42:51 -0500 | [diff] [blame] | 129 | } |
robertphillips | 9199a9f | 2016-07-13 07:48:43 -0700 | [diff] [blame] | 130 | |
Robert Phillips | 380b90c | 2017-08-30 07:41:07 -0400 | [diff] [blame] | 131 | void discard(); |
| 132 | |
Robert Phillips | 44e2c5f | 2020-04-14 13:00:04 -0400 | [diff] [blame] | 133 | #ifdef SK_DEBUG |
Robert Phillips | 44e2c5f | 2020-04-14 13:00:04 -0400 | [diff] [blame] | 134 | int numClips() const override { return fNumClips; } |
| 135 | void visitProxies_debugOnly(const GrOp::VisitProxyFunc&) const override; |
| 136 | #endif |
Robert Phillips | c84c030 | 2017-05-08 15:35:11 -0400 | [diff] [blame] | 137 | |
Robert Phillips | 438d986 | 2019-11-14 12:46:05 -0500 | [diff] [blame] | 138 | #if GR_TEST_UTILS |
John Stiles | 1e0136e | 2020-08-12 18:44:00 -0400 | [diff] [blame] | 139 | void dump(bool printDependencies) const override; |
| 140 | const char* name() const final { return "Ops"; } |
Robert Phillips | 438d986 | 2019-11-14 12:46:05 -0500 | [diff] [blame] | 141 | int numOpChains() const { return fOpChains.count(); } |
| 142 | const GrOp* getChain(int index) const { return fOpChains[index].head(); } |
| 143 | #endif |
| 144 | |
Brian Salomon | 1354048 | 2018-07-09 10:31:47 -0400 | [diff] [blame] | 145 | private: |
Chris Dalton | aa3cbb8 | 2019-08-21 00:01:21 -0600 | [diff] [blame] | 146 | bool isNoOp() const { |
Chris Dalton | a43e2d2 | 2019-08-30 01:14:33 -0600 | [diff] [blame] | 147 | // TODO: GrLoadOp::kDiscard (i.e., storing a discard) should also be grounds for skipping |
| 148 | // execution. We currently don't because of Vulkan. See http://skbug.com/9373. |
Chris Dalton | aa3cbb8 | 2019-08-21 00:01:21 -0600 | [diff] [blame] | 149 | // |
| 150 | // TODO: We should also consider stencil load/store here. We get away with it for now |
| 151 | // because we never discard stencil buffers. |
Chris Dalton | a43e2d2 | 2019-08-30 01:14:33 -0600 | [diff] [blame] | 152 | return fOpChains.empty() && GrLoadOp::kLoad == fColorLoadOp; |
Chris Dalton | aa3cbb8 | 2019-08-21 00:01:21 -0600 | [diff] [blame] | 153 | } |
| 154 | |
Greg Daniel | f41b2bd | 2019-08-22 16:19:24 -0400 | [diff] [blame] | 155 | void deleteOps(); |
Robert Phillips | 9313aa7 | 2019-04-09 18:41:27 -0400 | [diff] [blame] | 156 | |
Chris Dalton | 674f77a | 2019-09-30 20:49:39 -0600 | [diff] [blame] | 157 | enum class StencilContent { |
| 158 | kDontCare, |
| 159 | kUserBitsCleared, // User bits: cleared |
| 160 | // Clip bit: don't care (Ganesh always pre-clears the clip bit.) |
| 161 | kPreserved |
| 162 | }; |
| 163 | |
| 164 | // Lets the caller specify what the content of the stencil buffer should be at the beginning |
| 165 | // of the render pass. |
| 166 | // |
| 167 | // When requesting kClear: Tilers will load the stencil buffer with a "clear" op; non-tilers |
| 168 | // will clear the stencil on first load, and then preserve it on subsequent loads. (Preserving |
| 169 | // works because renderTargetContexts are required to leave the user bits in a cleared state |
| 170 | // once finished.) |
| 171 | // |
| 172 | // NOTE: initialContent must not be kClear if caps.performStencilClearsAsDraws() is true. |
| 173 | void setInitialStencilContent(StencilContent initialContent) { |
| 174 | fInitialStencilContent = initialContent; |
| 175 | } |
| 176 | |
| 177 | // If a renderTargetContext splits its opsTask, it uses this method to guarantee stencil values |
| 178 | // get preserved across its split tasks. |
| 179 | void setMustPreserveStencil() { fMustPreserveStencil = true; } |
| 180 | |
Michael Ludwig | c39d0c8 | 2019-01-15 10:03:43 -0500 | [diff] [blame] | 181 | // Must only be called if native color buffer clearing is enabled. |
| 182 | void setColorLoadOp(GrLoadOp op, const SkPMColor4f& color); |
| 183 | // Sets the clear color to transparent black |
| 184 | void setColorLoadOp(GrLoadOp op) { |
| 185 | static const SkPMColor4f kDefaultClearColor = {0.f, 0.f, 0.f, 0.f}; |
| 186 | this->setColorLoadOp(op, kDefaultClearColor); |
| 187 | } |
| 188 | |
Chris Dalton | 6b98280 | 2019-06-27 13:53:46 -0600 | [diff] [blame] | 189 | enum class CanDiscardPreviousOps : bool { |
| 190 | kYes = true, |
| 191 | kNo = false |
| 192 | }; |
| 193 | |
Michael Ludwig | c39d0c8 | 2019-01-15 10:03:43 -0500 | [diff] [blame] | 194 | // Perform book-keeping for a fullscreen clear, regardless of how the clear is implemented later |
| 195 | // (i.e. setColorLoadOp(), adding a ClearOp, or adding a GrFillRectOp that covers the device). |
| 196 | // Returns true if the clear can be converted into a load op (barring device caps). |
Chris Dalton | 6b98280 | 2019-06-27 13:53:46 -0600 | [diff] [blame] | 197 | bool resetForFullscreenClear(CanDiscardPreviousOps); |
Michael Ludwig | c39d0c8 | 2019-01-15 10:03:43 -0500 | [diff] [blame] | 198 | |
Brian Salomon | 588cec7 | 2018-11-14 13:56:37 -0500 | [diff] [blame] | 199 | class OpChain { |
| 200 | public: |
Greg Daniel | 524e28b | 2019-11-01 11:48:53 -0400 | [diff] [blame] | 201 | OpChain(std::unique_ptr<GrOp>, GrProcessorSet::Analysis, GrAppliedClip*, |
| 202 | const DstProxyView*); |
Brian Salomon | 588cec7 | 2018-11-14 13:56:37 -0500 | [diff] [blame] | 203 | ~OpChain() { |
| 204 | // The ops are stored in a GrMemoryPool and must be explicitly deleted via the pool. |
| 205 | SkASSERT(fList.empty()); |
Brian Salomon | 54d212e | 2017-03-21 14:22:38 -0400 | [diff] [blame] | 206 | } |
Chris Dalton | 8816b93 | 2017-11-29 16:48:25 -0700 | [diff] [blame] | 207 | |
John Stiles | 48025a0 | 2020-07-27 10:33:50 -0400 | [diff] [blame] | 208 | OpChain(const OpChain&) = delete; |
| 209 | OpChain& operator=(const OpChain&) = delete; |
| 210 | OpChain(OpChain&&) = default; |
| 211 | OpChain& operator=(OpChain&&) = default; |
| 212 | |
Chris Dalton | 1706cbf | 2019-05-21 19:35:29 -0600 | [diff] [blame] | 213 | void visitProxies(const GrOp::VisitProxyFunc&) const; |
Robert Phillips | c994a93 | 2018-06-19 13:09:54 -0400 | [diff] [blame] | 214 | |
Brian Salomon | 588cec7 | 2018-11-14 13:56:37 -0500 | [diff] [blame] | 215 | GrOp* head() const { return fList.head(); } |
Robert Phillips | 7c525e6 | 2018-06-12 10:11:12 -0400 | [diff] [blame] | 216 | |
Brian Salomon | 588cec7 | 2018-11-14 13:56:37 -0500 | [diff] [blame] | 217 | GrAppliedClip* appliedClip() const { return fAppliedClip; } |
Greg Daniel | 524e28b | 2019-11-01 11:48:53 -0400 | [diff] [blame] | 218 | const DstProxyView& dstProxyView() const { return fDstProxyView; } |
Brian Salomon | 588cec7 | 2018-11-14 13:56:37 -0500 | [diff] [blame] | 219 | const SkRect& bounds() const { return fBounds; } |
Chris Dalton | 8816b93 | 2017-11-29 16:48:25 -0700 | [diff] [blame] | 220 | |
Brian Salomon | 588cec7 | 2018-11-14 13:56:37 -0500 | [diff] [blame] | 221 | // Deletes all the ops in the chain via the pool. |
| 222 | void deleteOps(GrOpMemoryPool* pool); |
| 223 | |
| 224 | // Attempts to move the ops from the passed chain to this chain at the head. Also attempts |
| 225 | // to merge ops between the chains. Upon success the passed chain is empty. |
| 226 | // Fails when the chains aren't of the same op type, have different clips or dst proxies. |
Michael Ludwig | 28b0c5d | 2019-12-19 14:51:00 -0500 | [diff] [blame] | 227 | bool prependChain(OpChain*, const GrCaps&, GrRecordingContext::Arenas*, GrAuditTrail*); |
Brian Salomon | 588cec7 | 2018-11-14 13:56:37 -0500 | [diff] [blame] | 228 | |
| 229 | // Attempts to add 'op' to this chain either by merging or adding to the tail. Returns |
| 230 | // 'op' to the caller upon failure, otherwise null. Fails when the op and chain aren't of |
| 231 | // the same op type, have different clips or dst proxies. |
Chris Dalton | 945ee65 | 2019-01-23 09:10:36 -0700 | [diff] [blame] | 232 | std::unique_ptr<GrOp> appendOp(std::unique_ptr<GrOp> op, GrProcessorSet::Analysis, |
Greg Daniel | 524e28b | 2019-11-01 11:48:53 -0400 | [diff] [blame] | 233 | const DstProxyView*, const GrAppliedClip*, const GrCaps&, |
Michael Ludwig | 28b0c5d | 2019-12-19 14:51:00 -0500 | [diff] [blame] | 234 | GrRecordingContext::Arenas*, GrAuditTrail*); |
Brian Salomon | 588cec7 | 2018-11-14 13:56:37 -0500 | [diff] [blame] | 235 | |
Greg Daniel | 15ecdf9 | 2019-08-30 15:35:23 -0400 | [diff] [blame] | 236 | void setSkipExecuteFlag() { fSkipExecute = true; } |
| 237 | bool shouldExecute() const { |
| 238 | return SkToBool(this->head()) && !fSkipExecute; |
| 239 | } |
| 240 | |
Brian Salomon | 588cec7 | 2018-11-14 13:56:37 -0500 | [diff] [blame] | 241 | private: |
| 242 | class List { |
| 243 | public: |
| 244 | List() = default; |
| 245 | List(std::unique_ptr<GrOp>); |
| 246 | List(List&&); |
| 247 | List& operator=(List&& that); |
| 248 | |
| 249 | bool empty() const { return !SkToBool(fHead); } |
| 250 | GrOp* head() const { return fHead.get(); } |
| 251 | GrOp* tail() const { return fTail; } |
| 252 | |
| 253 | std::unique_ptr<GrOp> popHead(); |
| 254 | std::unique_ptr<GrOp> removeOp(GrOp* op); |
| 255 | void pushHead(std::unique_ptr<GrOp> op); |
| 256 | void pushTail(std::unique_ptr<GrOp>); |
| 257 | |
| 258 | void validate() const; |
| 259 | |
| 260 | private: |
| 261 | std::unique_ptr<GrOp> fHead; |
| 262 | GrOp* fTail = nullptr; |
| 263 | }; |
| 264 | |
| 265 | void validate() const; |
| 266 | |
Greg Daniel | 524e28b | 2019-11-01 11:48:53 -0400 | [diff] [blame] | 267 | bool tryConcat(List*, GrProcessorSet::Analysis, const DstProxyView&, const GrAppliedClip*, |
Michael Ludwig | 28b0c5d | 2019-12-19 14:51:00 -0500 | [diff] [blame] | 268 | const SkRect& bounds, const GrCaps&, GrRecordingContext::Arenas*, |
Michael Ludwig | d0840ec | 2019-12-12 09:48:38 -0500 | [diff] [blame] | 269 | GrAuditTrail*); |
Michael Ludwig | 28b0c5d | 2019-12-19 14:51:00 -0500 | [diff] [blame] | 270 | static List DoConcat(List, List, const GrCaps&, GrRecordingContext::Arenas*, GrAuditTrail*); |
Brian Salomon | 588cec7 | 2018-11-14 13:56:37 -0500 | [diff] [blame] | 271 | |
| 272 | List fList; |
Chris Dalton | 945ee65 | 2019-01-23 09:10:36 -0700 | [diff] [blame] | 273 | GrProcessorSet::Analysis fProcessorAnalysis; |
Greg Daniel | 524e28b | 2019-11-01 11:48:53 -0400 | [diff] [blame] | 274 | DstProxyView fDstProxyView; |
Brian Salomon | 588cec7 | 2018-11-14 13:56:37 -0500 | [diff] [blame] | 275 | GrAppliedClip* fAppliedClip; |
| 276 | SkRect fBounds; |
Greg Daniel | 15ecdf9 | 2019-08-30 15:35:23 -0400 | [diff] [blame] | 277 | |
| 278 | // We set this flag to true if any of the ops' proxies fail to instantiate so that we know |
| 279 | // not to try and draw the op. |
| 280 | bool fSkipExecute = false; |
Brian Salomon | 54d212e | 2017-03-21 14:22:38 -0400 | [diff] [blame] | 281 | }; |
| 282 | |
Greg Daniel | f41b2bd | 2019-08-22 16:19:24 -0400 | [diff] [blame] | 283 | |
| 284 | bool onIsUsed(GrSurfaceProxy*) const override; |
| 285 | |
Chris Dalton | 6b49810 | 2019-08-01 14:14:52 -0600 | [diff] [blame] | 286 | void handleInternalAllocationFailure() override; |
Greg Daniel | aa3dfbe | 2018-01-29 10:34:25 -0500 | [diff] [blame] | 287 | |
Robert Phillips | d375dbf | 2017-09-14 12:45:25 -0400 | [diff] [blame] | 288 | void gatherProxyIntervals(GrResourceAllocator*) const override; |
| 289 | |
Greg Daniel | 524e28b | 2019-11-01 11:48:53 -0400 | [diff] [blame] | 290 | void recordOp(std::unique_ptr<GrOp>, GrProcessorSet::Analysis, GrAppliedClip*, |
| 291 | const DstProxyView*, const GrCaps& caps); |
Brian Salomon | 2790c52 | 2016-12-09 16:32:23 -0500 | [diff] [blame] | 292 | |
Robert Phillips | ee68365 | 2017-04-26 11:53:10 -0400 | [diff] [blame] | 293 | void forwardCombine(const GrCaps&); |
bsalomon | ad792c1 | 2015-09-10 11:10:50 -0700 | [diff] [blame] | 294 | |
Chris Dalton | 16a33c6 | 2019-09-24 22:19:17 -0600 | [diff] [blame] | 295 | ExpectedOutcome onMakeClosed(const GrCaps& caps, SkIRect* targetUpdateBounds) override; |
Chris Dalton | aa3cbb8 | 2019-08-21 00:01:21 -0600 | [diff] [blame] | 296 | |
Robert Phillips | 089b7c9 | 2020-08-12 11:57:07 -0400 | [diff] [blame] | 297 | friend class OpsTaskTestingAccess; |
Greg Daniel | f41b2bd | 2019-08-22 16:19:24 -0400 | [diff] [blame] | 298 | friend class GrRenderTargetContextPriv; // for stencil clip state. TODO: this is invasive |
Chris Dalton | aa3cbb8 | 2019-08-21 00:01:21 -0600 | [diff] [blame] | 299 | |
Greg Daniel | f41b2bd | 2019-08-22 16:19:24 -0400 | [diff] [blame] | 300 | // The RTC and OpsTask have to work together to handle buffer clears. In most cases, buffer |
| 301 | // clearing can be done natively, in which case the op list's load ops are sufficient. In other |
| 302 | // cases, draw ops must be used, which makes the RTC the best place for those decisions. This, |
| 303 | // however, requires that the RTC be able to coordinate with the op list to achieve similar ends |
| 304 | friend class GrRenderTargetContext; |
| 305 | |
Michael Ludwig | 28b0c5d | 2019-12-19 14:51:00 -0500 | [diff] [blame] | 306 | // This is a backpointer to the Arenas that holds the memory for this GrOpsTask's ops. In the |
| 307 | // DDL case, the Arenas must have been detached from the original recording context and moved |
| 308 | // into the owning DDL. |
| 309 | GrRecordingContext::Arenas fArenas; |
| 310 | GrAuditTrail* fAuditTrail; |
Brian Salomon | f1c9eae | 2020-05-01 15:00:34 -0400 | [diff] [blame] | 311 | |
| 312 | SkSTArray<2, GrOpsTaskClosedObserver*, true> fClosedObservers; |
Greg Daniel | f41b2bd | 2019-08-22 16:19:24 -0400 | [diff] [blame] | 313 | |
| 314 | GrLoadOp fColorLoadOp = GrLoadOp::kLoad; |
| 315 | SkPMColor4f fLoadClearColor = SK_PMColor4fTRANSPARENT; |
Chris Dalton | 674f77a | 2019-09-30 20:49:39 -0600 | [diff] [blame] | 316 | StencilContent fInitialStencilContent = StencilContent::kDontCare; |
| 317 | bool fMustPreserveStencil = false; |
Greg Daniel | f41b2bd | 2019-08-22 16:19:24 -0400 | [diff] [blame] | 318 | |
Brian Salomon | 3b8486a | 2020-04-21 12:43:26 -0400 | [diff] [blame] | 319 | uint32_t fLastClipStackGenID = SK_InvalidUniqueID; |
Greg Daniel | f41b2bd | 2019-08-22 16:19:24 -0400 | [diff] [blame] | 320 | SkIRect fLastDevClipBounds; |
John Stiles | 9e8f484 | 2020-07-09 11:30:05 -0400 | [diff] [blame] | 321 | int fLastClipNumAnalyticElements; |
csmartdalton | 7cdda99 | 2016-11-01 07:03:03 -0700 | [diff] [blame] | 322 | |
Greg Daniel | 9a18b08 | 2020-08-14 14:03:50 -0400 | [diff] [blame] | 323 | bool fUsesXferBarriers = false; |
| 324 | |
Greg Daniel | f41b2bd | 2019-08-22 16:19:24 -0400 | [diff] [blame] | 325 | // For ops/opsTask we have mean: 5 stdDev: 28 |
John Stiles | 48025a0 | 2020-07-27 10:33:50 -0400 | [diff] [blame] | 326 | SkSTArray<25, OpChain> fOpChains; |
Brian Salomon | 54d212e | 2017-03-21 14:22:38 -0400 | [diff] [blame] | 327 | |
Robert Phillips | f6d7eb1 | 2017-04-26 14:55:34 -0400 | [diff] [blame] | 328 | // MDB TODO: 4096 for the first allocation of the clip space will be huge overkill. |
| 329 | // Gather statistics to determine the correct size. |
Herb Derby | 6e2c56f | 2020-08-01 16:26:04 -0400 | [diff] [blame] | 330 | SkArenaAllocWithReset fClipAllocator{4096}; |
Greg Daniel | f41b2bd | 2019-08-22 16:19:24 -0400 | [diff] [blame] | 331 | SkDEBUGCODE(int fNumClips;) |
Brian Salomon | 54d212e | 2017-03-21 14:22:38 -0400 | [diff] [blame] | 332 | |
Greg Daniel | b20d7e5 | 2019-09-03 13:54:39 -0400 | [diff] [blame] | 333 | // TODO: We could look into this being a set if we find we're adding a lot of duplicates that is |
| 334 | // causing slow downs. |
Michael Ludwig | fcdd061 | 2019-11-25 08:34:31 -0500 | [diff] [blame] | 335 | SkTArray<GrSurfaceProxy*, true> fSampledProxies; |
Chris Dalton | 16a33c6 | 2019-09-24 22:19:17 -0600 | [diff] [blame] | 336 | |
| 337 | SkRect fTotalBounds = SkRect::MakeEmpty(); |
Greg Daniel | 94ed83f | 2019-09-27 13:05:43 -0400 | [diff] [blame] | 338 | SkIRect fClippedContentBounds = SkIRect::MakeEmpty(); |
joshualitt | 6db519c | 2014-10-29 08:48:18 -0700 | [diff] [blame] | 339 | }; |
| 340 | |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 341 | #endif |