blob: 0539eab262d0de5af204423cebcee3ee0abe697b [file] [log] [blame]
reed@google.comac10a2d2010-12-22 21:39:39 +00001/*
Greg Danielf41b2bd2019-08-22 16:19:24 -04002 * Copyright 2019 Google Inc.
epoger@google.comec3ed6a2011-07-28 14:26:00 +00003 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
reed@google.comac10a2d2010-12-22 21:39:39 +00006 */
7
Greg Danielf41b2bd2019-08-22 16:19:24 -04008#ifndef GrOpsTask_DEFINED
9#define GrOpsTask_DEFINED
reed@google.comac10a2d2010-12-22 21:39:39 +000010
Mike Kleinc0bd9f92019-04-23 12:05:21 -050011#include "include/core/SkMatrix.h"
Greg Danielf41b2bd2019-08-22 16:19:24 -040012#include "include/core/SkRefCnt.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050013#include "include/core/SkStrokeRec.h"
14#include "include/core/SkTypes.h"
Greg Danielf41b2bd2019-08-22 16:19:24 -040015#include "include/private/SkColorData.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050016#include "include/private/SkTArray.h"
Greg Danielf41b2bd2019-08-22 16:19:24 -040017#include "include/private/SkTDArray.h"
Ben Wagner729a23f2019-05-17 16:29:34 -040018#include "src/core/SkArenaAlloc.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050019#include "src/core/SkClipStack.h"
20#include "src/core/SkStringUtils.h"
21#include "src/core/SkTLazy.h"
22#include "src/gpu/GrAppliedClip.h"
23#include "src/gpu/GrPathRendering.h"
24#include "src/gpu/GrPrimitiveProcessor.h"
Greg Danielf41b2bd2019-08-22 16:19:24 -040025#include "src/gpu/GrRenderTask.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050026#include "src/gpu/ops/GrDrawOp.h"
27#include "src/gpu/ops/GrOp.h"
Scroggo97c88c22011-05-11 14:05:25 +000028
joshualitt086cee12016-01-12 06:45:24 -080029class GrAuditTrail;
Greg Danielf21bf9e2019-08-22 20:12:20 +000030class GrCaps;
Greg Danielf41b2bd2019-08-22 16:19:24 -040031class GrClearOp;
32class GrGpuBuffer;
33class GrOpMemoryPool;
Robert Phillipsc7635fa2016-10-28 13:25:24 -040034class GrRenderTargetProxy;
sugoi@google.com12b4e272012-12-06 20:13:11 +000035
Greg Danielf41b2bd2019-08-22 16:19:24 -040036class GrOpsTask : public GrRenderTask {
Brian Salomon54d212e2017-03-21 14:22:38 -040037private:
Robert Phillipsbb581ce2017-05-29 15:05:15 -040038 using DstProxy = GrXferProcessor::DstProxy;
Brian Salomon54d212e2017-03-21 14:22:38 -040039
bsalomon@google.comf6601872012-08-28 21:11:35 +000040public:
Greg Danielf41b2bd2019-08-22 16:19:24 -040041 GrOpsTask(sk_sp<GrOpMemoryPool>, sk_sp<GrRenderTargetProxy>, GrAuditTrail*);
42 ~GrOpsTask() override;
bsalomona73239a2015-04-28 13:35:17 -070043
Greg Danielf41b2bd2019-08-22 16:19:24 -040044 GrOpsTask* asOpsTask() override { return this; }
reed@google.comac10a2d2010-12-22 21:39:39 +000045
Brian Salomon588cec72018-11-14 13:56:37 -050046 bool isEmpty() const { return fOpChains.empty(); }
Robert Phillipsf5442bb2017-04-17 14:18:34 -040047
reed@google.comac10a2d2010-12-22 21:39:39 +000048 /**
bsalomona73239a2015-04-28 13:35:17 -070049 * Empties the draw buffer of any queued up draws.
50 */
Chris Daltona84cacf2017-10-04 10:30:29 -060051 void endFlush() override;
Robert Phillipsf2361d22016-10-25 14:20:06 -040052
bsalomona73239a2015-04-28 13:35:17 -070053 /**
bsalomondc438982016-08-31 11:53:49 -070054 * Together these two functions flush all queued up draws to GrCommandBuffer. The return value
Brian Salomon1e41f4a2016-12-07 15:05:04 -050055 * of executeOps() indicates whether any commands were actually issued to the GPU.
bsalomona73239a2015-04-28 13:35:17 -070056 */
Brian Osman407b3422017-08-22 15:01:32 -040057 void onPrepare(GrOpFlushState* flushState) override;
58 bool onExecute(GrOpFlushState* flushState) override;
bsalomona73239a2015-04-28 13:35:17 -070059
Greg Danielb20d7e52019-09-03 13:54:39 -040060 void addSampledTexture(GrTextureProxy* proxy) {
61 fSampledProxies.push_back(proxy);
62 }
63
Chris Dalton08755122019-08-05 16:13:47 -060064 void addOp(std::unique_ptr<GrOp> op, GrTextureResolveManager textureResolveManager,
65 const GrCaps& caps) {
66 auto addDependency = [ textureResolveManager, &caps, this ] (
Greg Danieldcf9ca12019-08-27 14:30:21 -040067 GrTextureProxy* p, GrMipMapped mipmapped) {
Chris Dalton08755122019-08-05 16:13:47 -060068 this->addDependency(p, mipmapped, textureResolveManager, caps);
Robert Phillipsb493eeb2017-09-13 13:10:52 -040069 };
70
71 op->visitProxies(addDependency);
72
Chris Dalton945ee652019-01-23 09:10:36 -070073 this->recordOp(std::move(op), GrProcessorSet::EmptySetAnalysis(), nullptr, nullptr, caps);
Brian Salomon54d212e2017-03-21 14:22:38 -040074 }
Robert Phillipsb493eeb2017-09-13 13:10:52 -040075
Chris Dalton08755122019-08-05 16:13:47 -060076 void addWaitOp(std::unique_ptr<GrOp> op, GrTextureResolveManager textureResolveManager,
77 const GrCaps& caps) {
78 fHasWaitOp = true;
79 this->addOp(std::move(op), textureResolveManager, caps);
Greg Danielcb324152019-02-25 11:36:53 -050080 }
81
Chris Dalton945ee652019-01-23 09:10:36 -070082 void addDrawOp(std::unique_ptr<GrDrawOp> op, const GrProcessorSet::Analysis& processorAnalysis,
Chris Dalton08755122019-08-05 16:13:47 -060083 GrAppliedClip&& clip, const DstProxy& dstProxy,
84 GrTextureResolveManager textureResolveManager, const GrCaps& caps) {
85 auto addDependency = [ textureResolveManager, &caps, this ] (
Greg Danieldcf9ca12019-08-27 14:30:21 -040086 GrTextureProxy* p, GrMipMapped mipmapped) {
Greg Danielb20d7e52019-09-03 13:54:39 -040087 this->addSampledTexture(p);
Chris Dalton08755122019-08-05 16:13:47 -060088 this->addDependency(p, mipmapped, textureResolveManager, caps);
Robert Phillipsb493eeb2017-09-13 13:10:52 -040089 };
90
91 op->visitProxies(addDependency);
92 clip.visitProxies(addDependency);
Robert Phillips2739ab02018-07-27 07:35:55 -040093 if (dstProxy.proxy()) {
Greg Danielb20d7e52019-09-03 13:54:39 -040094 this->addSampledTexture(dstProxy.proxy());
Chris Dalton7eb5c0f2019-05-23 15:15:47 -060095 addDependency(dstProxy.proxy(), GrMipMapped::kNo);
Robert Phillips2739ab02018-07-27 07:35:55 -040096 }
Robert Phillipsb493eeb2017-09-13 13:10:52 -040097
Chris Dalton945ee652019-01-23 09:10:36 -070098 this->recordOp(std::move(op), processorAnalysis, clip.doesClip() ? &clip : nullptr,
99 &dstProxy, caps);
Brian Salomon69868af2016-12-22 15:42:51 -0500100 }
robertphillips9199a9f2016-07-13 07:48:43 -0700101
Robert Phillips380b90c2017-08-30 07:41:07 -0400102 void discard();
103
Robert Phillips27483912018-04-20 12:43:18 -0400104 SkDEBUGCODE(void dump(bool printDependencies) const override;)
Robert Phillipsc84c0302017-05-08 15:35:11 -0400105 SkDEBUGCODE(int numClips() const override { return fNumClips; })
Greg Danieldcf9ca12019-08-27 14:30:21 -0400106 SkDEBUGCODE(void visitProxies_debugOnly(const VisitSurfaceProxyFunc&) const override;)
Robert Phillipsc84c0302017-05-08 15:35:11 -0400107
Brian Salomon13540482018-07-09 10:31:47 -0400108private:
Chris Daltonaa3cbb82019-08-21 00:01:21 -0600109 bool isNoOp() const {
Chris Daltona43e2d22019-08-30 01:14:33 -0600110 // TODO: GrLoadOp::kDiscard (i.e., storing a discard) should also be grounds for skipping
111 // execution. We currently don't because of Vulkan. See http://skbug.com/9373.
Chris Daltonaa3cbb82019-08-21 00:01:21 -0600112 //
113 // TODO: We should also consider stencil load/store here. We get away with it for now
114 // because we never discard stencil buffers.
Chris Daltona43e2d22019-08-30 01:14:33 -0600115 return fOpChains.empty() && GrLoadOp::kLoad == fColorLoadOp;
Chris Daltonaa3cbb82019-08-21 00:01:21 -0600116 }
117
Greg Danielf41b2bd2019-08-22 16:19:24 -0400118 void deleteOps();
Robert Phillips9313aa72019-04-09 18:41:27 -0400119
Michael Ludwig6e17f1d2019-05-15 14:00:20 +0000120 // Must only be called if native stencil buffer clearing is enabled
Chris Dalton6b982802019-06-27 13:53:46 -0600121 void setStencilLoadOp(GrLoadOp op) { fStencilLoadOp = op; }
Michael Ludwigc39d0c82019-01-15 10:03:43 -0500122 // Must only be called if native color buffer clearing is enabled.
123 void setColorLoadOp(GrLoadOp op, const SkPMColor4f& color);
124 // Sets the clear color to transparent black
125 void setColorLoadOp(GrLoadOp op) {
126 static const SkPMColor4f kDefaultClearColor = {0.f, 0.f, 0.f, 0.f};
127 this->setColorLoadOp(op, kDefaultClearColor);
128 }
129
Chris Dalton6b982802019-06-27 13:53:46 -0600130 enum class CanDiscardPreviousOps : bool {
131 kYes = true,
132 kNo = false
133 };
134
Michael Ludwigc39d0c82019-01-15 10:03:43 -0500135 // Perform book-keeping for a fullscreen clear, regardless of how the clear is implemented later
136 // (i.e. setColorLoadOp(), adding a ClearOp, or adding a GrFillRectOp that covers the device).
137 // Returns true if the clear can be converted into a load op (barring device caps).
Chris Dalton6b982802019-06-27 13:53:46 -0600138 bool resetForFullscreenClear(CanDiscardPreviousOps);
Michael Ludwigc39d0c82019-01-15 10:03:43 -0500139
Brian Salomon588cec72018-11-14 13:56:37 -0500140 class OpChain {
141 public:
142 OpChain(const OpChain&) = delete;
143 OpChain& operator=(const OpChain&) = delete;
Chris Dalton945ee652019-01-23 09:10:36 -0700144 OpChain(std::unique_ptr<GrOp>, GrProcessorSet::Analysis, GrAppliedClip*, const DstProxy*);
Brian Salomon588cec72018-11-14 13:56:37 -0500145
146 ~OpChain() {
147 // The ops are stored in a GrMemoryPool and must be explicitly deleted via the pool.
148 SkASSERT(fList.empty());
Brian Salomon54d212e2017-03-21 14:22:38 -0400149 }
Chris Dalton8816b932017-11-29 16:48:25 -0700150
Chris Dalton1706cbf2019-05-21 19:35:29 -0600151 void visitProxies(const GrOp::VisitProxyFunc&) const;
Robert Phillipsc994a932018-06-19 13:09:54 -0400152
Brian Salomon588cec72018-11-14 13:56:37 -0500153 GrOp* head() const { return fList.head(); }
Robert Phillips7c525e62018-06-12 10:11:12 -0400154
Brian Salomon588cec72018-11-14 13:56:37 -0500155 GrAppliedClip* appliedClip() const { return fAppliedClip; }
156 const DstProxy& dstProxy() const { return fDstProxy; }
157 const SkRect& bounds() const { return fBounds; }
Chris Dalton8816b932017-11-29 16:48:25 -0700158
Brian Salomon588cec72018-11-14 13:56:37 -0500159 // Deletes all the ops in the chain via the pool.
160 void deleteOps(GrOpMemoryPool* pool);
161
162 // Attempts to move the ops from the passed chain to this chain at the head. Also attempts
163 // to merge ops between the chains. Upon success the passed chain is empty.
164 // Fails when the chains aren't of the same op type, have different clips or dst proxies.
165 bool prependChain(OpChain*, const GrCaps&, GrOpMemoryPool*, GrAuditTrail*);
166
167 // Attempts to add 'op' to this chain either by merging or adding to the tail. Returns
168 // 'op' to the caller upon failure, otherwise null. Fails when the op and chain aren't of
169 // the same op type, have different clips or dst proxies.
Chris Dalton945ee652019-01-23 09:10:36 -0700170 std::unique_ptr<GrOp> appendOp(std::unique_ptr<GrOp> op, GrProcessorSet::Analysis,
171 const DstProxy*, const GrAppliedClip*, const GrCaps&,
172 GrOpMemoryPool*, GrAuditTrail*);
Brian Salomon588cec72018-11-14 13:56:37 -0500173
Greg Daniel15ecdf92019-08-30 15:35:23 -0400174 void setSkipExecuteFlag() { fSkipExecute = true; }
175 bool shouldExecute() const {
176 return SkToBool(this->head()) && !fSkipExecute;
177 }
178
Brian Salomon588cec72018-11-14 13:56:37 -0500179 private:
180 class List {
181 public:
182 List() = default;
183 List(std::unique_ptr<GrOp>);
184 List(List&&);
185 List& operator=(List&& that);
186
187 bool empty() const { return !SkToBool(fHead); }
188 GrOp* head() const { return fHead.get(); }
189 GrOp* tail() const { return fTail; }
190
191 std::unique_ptr<GrOp> popHead();
192 std::unique_ptr<GrOp> removeOp(GrOp* op);
193 void pushHead(std::unique_ptr<GrOp> op);
194 void pushTail(std::unique_ptr<GrOp>);
195
196 void validate() const;
197
198 private:
199 std::unique_ptr<GrOp> fHead;
200 GrOp* fTail = nullptr;
201 };
202
203 void validate() const;
204
Chris Dalton945ee652019-01-23 09:10:36 -0700205 bool tryConcat(List*, GrProcessorSet::Analysis, const DstProxy&, const GrAppliedClip*,
206 const SkRect& bounds, const GrCaps&, GrOpMemoryPool*, GrAuditTrail*);
Chris Dalton6f6ae6a2019-01-18 12:10:36 -0700207 static List DoConcat(List, List, const GrCaps&, GrOpMemoryPool*, GrAuditTrail*);
Brian Salomon588cec72018-11-14 13:56:37 -0500208
209 List fList;
Chris Dalton945ee652019-01-23 09:10:36 -0700210 GrProcessorSet::Analysis fProcessorAnalysis;
Brian Salomon588cec72018-11-14 13:56:37 -0500211 DstProxy fDstProxy;
212 GrAppliedClip* fAppliedClip;
213 SkRect fBounds;
Greg Daniel15ecdf92019-08-30 15:35:23 -0400214
215 // We set this flag to true if any of the ops' proxies fail to instantiate so that we know
216 // not to try and draw the op.
217 bool fSkipExecute = false;
Brian Salomon54d212e2017-03-21 14:22:38 -0400218 };
219
Greg Danielf41b2bd2019-08-22 16:19:24 -0400220
221 bool onIsUsed(GrSurfaceProxy*) const override;
222
Chris Dalton6b498102019-08-01 14:14:52 -0600223 void handleInternalAllocationFailure() override;
Greg Danielaa3dfbe2018-01-29 10:34:25 -0500224
Robert Phillipsd375dbf2017-09-14 12:45:25 -0400225 void gatherProxyIntervals(GrResourceAllocator*) const override;
226
Chris Dalton945ee652019-01-23 09:10:36 -0700227 void recordOp(std::unique_ptr<GrOp>, GrProcessorSet::Analysis, GrAppliedClip*, const DstProxy*,
228 const GrCaps& caps);
Brian Salomon2790c522016-12-09 16:32:23 -0500229
Robert Phillipsee683652017-04-26 11:53:10 -0400230 void forwardCombine(const GrCaps&);
bsalomonad792c12015-09-10 11:10:50 -0700231
Chris Dalton16a33c62019-09-24 22:19:17 -0600232 ExpectedOutcome onMakeClosed(const GrCaps& caps, SkIRect* targetUpdateBounds) override;
Chris Daltonaa3cbb82019-08-21 00:01:21 -0600233
Greg Danielf41b2bd2019-08-22 16:19:24 -0400234 friend class GrRenderTargetContextPriv; // for stencil clip state. TODO: this is invasive
Chris Daltonaa3cbb82019-08-21 00:01:21 -0600235
Greg Danielf41b2bd2019-08-22 16:19:24 -0400236 // The RTC and OpsTask have to work together to handle buffer clears. In most cases, buffer
237 // clearing can be done natively, in which case the op list's load ops are sufficient. In other
238 // cases, draw ops must be used, which makes the RTC the best place for those decisions. This,
239 // however, requires that the RTC be able to coordinate with the op list to achieve similar ends
240 friend class GrRenderTargetContext;
241
242 // This is a backpointer to the GrOpMemoryPool that holds the memory for this GrOpsTask's ops.
243 // In the DDL case, these back pointers keep the DDL's GrOpMemoryPool alive as long as its
244 // constituent GrOpsTask survives.
245 sk_sp<GrOpMemoryPool> fOpMemoryPool;
246 GrAuditTrail* fAuditTrail;
247
248 GrLoadOp fColorLoadOp = GrLoadOp::kLoad;
249 SkPMColor4f fLoadClearColor = SK_PMColor4fTRANSPARENT;
250 GrLoadOp fStencilLoadOp = GrLoadOp::kLoad;
251
252 uint32_t fLastClipStackGenID;
253 SkIRect fLastDevClipBounds;
254 int fLastClipNumAnalyticFPs;
csmartdalton7cdda992016-11-01 07:03:03 -0700255
Greg Danielcb324152019-02-25 11:36:53 -0500256 // We must track if we have a wait op so that we don't delete the op when we have a full clear.
257 bool fHasWaitOp = false;;
258
Greg Danielf41b2bd2019-08-22 16:19:24 -0400259 // For ops/opsTask we have mean: 5 stdDev: 28
260 SkSTArray<25, OpChain, true> fOpChains;
Brian Salomon54d212e2017-03-21 14:22:38 -0400261
Robert Phillipsf6d7eb12017-04-26 14:55:34 -0400262 // MDB TODO: 4096 for the first allocation of the clip space will be huge overkill.
263 // Gather statistics to determine the correct size.
Greg Danielf41b2bd2019-08-22 16:19:24 -0400264 SkArenaAlloc fClipAllocator{4096};
265 SkDEBUGCODE(int fNumClips;)
Brian Salomon54d212e2017-03-21 14:22:38 -0400266
Greg Danielb20d7e52019-09-03 13:54:39 -0400267 // TODO: We could look into this being a set if we find we're adding a lot of duplicates that is
268 // causing slow downs.
269 SkTArray<GrTextureProxy*, true> fSampledProxies;
Chris Dalton16a33c62019-09-24 22:19:17 -0600270
271 SkRect fTotalBounds = SkRect::MakeEmpty();
joshualitt6db519c2014-10-29 08:48:18 -0700272};
273
reed@google.comac10a2d2010-12-22 21:39:39 +0000274#endif