blob: 292317b183abf01eae9c957e80e73f89df733082 [file] [log] [blame]
joshualitt4d8da812015-01-28 12:53:54 -08001/*
2 * Copyright 2015 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
Brian Salomon53e4c3c2016-12-21 11:38:53 -05008#ifndef GrOp_DEFINED
9#define GrOp_DEFINED
joshualitt4d8da812015-01-28 12:53:54 -080010
Mike Kleinc0bd9f92019-04-23 12:05:21 -050011#include "include/core/SkMatrix.h"
12#include "include/core/SkRect.h"
13#include "include/core/SkString.h"
Michael Ludwig28b0c5d2019-12-19 14:51:00 -050014#include "include/private/GrRecordingContext.h"
Greg Daniel456f9b52020-03-05 19:14:18 +000015#include "src/gpu/GrGpuResource.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050016#include "src/gpu/GrNonAtomicRef.h"
17#include "src/gpu/GrTracing.h"
18#include "src/gpu/GrXferProcessor.h"
Mike Klein0ec1c572018-12-04 11:52:51 -050019#include <atomic>
20#include <new>
joshualitt4d8da812015-01-28 12:53:54 -080021
Robert Phillips61fc7992019-10-22 11:58:17 -040022class GrAppliedClip;
bsalomon16b99132015-08-13 14:55:50 -070023class GrCaps;
Brian Salomon742e31d2016-12-07 17:06:19 -050024class GrOpFlushState;
Greg Daniel2d41d0d2019-08-26 11:08:51 -040025class GrOpsRenderPass;
joshualitt4d8da812015-01-28 12:53:54 -080026
bsalomonabd30f52015-08-13 13:34:48 -070027/**
Brian Salomon53e4c3c2016-12-21 11:38:53 -050028 * GrOp is the base class for all Ganesh deferred GPU operations. To facilitate reordering and to
29 * minimize draw calls, Ganesh does not generate geometry inline with draw calls. Instead, it
30 * captures the arguments to the draw and then generates the geometry when flushing. This gives GrOp
31 * subclasses complete freedom to decide how/when to combine in order to produce fewer draw calls
32 * and minimize state changes.
joshualitt4d8da812015-01-28 12:53:54 -080033 *
Brian Salomond25f5bc2018-08-08 11:25:17 -040034 * Ops of the same subclass may be merged or chained using combineIfPossible. When two ops merge,
35 * one takes on the union of the data and the other is left empty. The merged op becomes responsible
36 * for drawing the data from both the original ops. When ops are chained each op maintains its own
37 * data but they are linked in a list and the head op becomes responsible for executing the work for
38 * the chain.
bsalomondb4758c2015-11-23 11:14:20 -080039 *
Brian Salomon588cec72018-11-14 13:56:37 -050040 * It is required that chainability is transitive. Moreover, if op A is able to merge with B then
41 * it must be the case that any op that can chain with A will either merge or chain with any op
42 * that can chain to B.
43 *
Brian Salomon25a88092016-12-01 09:36:50 -050044 * The bounds of the op must contain all the vertices in device space *irrespective* of the clip.
bsalomondb4758c2015-11-23 11:14:20 -080045 * The bounds are used in determining which clip elements must be applied and thus the bounds cannot
46 * in turn depend upon the clip.
joshualitt4d8da812015-01-28 12:53:54 -080047 */
Brian Salomon25a88092016-12-01 09:36:50 -050048#define GR_OP_SPEW 0
49#if GR_OP_SPEW
50 #define GrOP_SPEW(code) code
51 #define GrOP_INFO(...) SkDebugf(__VA_ARGS__)
joshualittca1f07e2015-08-07 08:11:19 -070052#else
Brian Salomon25a88092016-12-01 09:36:50 -050053 #define GrOP_SPEW(code)
54 #define GrOP_INFO(...)
joshualittca1f07e2015-08-07 08:11:19 -070055#endif
joshualitt4d8da812015-01-28 12:53:54 -080056
Robert Phillips27483912018-04-20 12:43:18 -040057// Print out op information at flush time
58#define GR_FLUSH_TIME_OP_SPEW 0
59
reed1b55a962015-09-17 20:16:13 -070060// A helper macro to generate a class static id
Brian Salomon25a88092016-12-01 09:36:50 -050061#define DEFINE_OP_CLASS_ID \
reed1b55a962015-09-17 20:16:13 -070062 static uint32_t ClassID() { \
Brian Salomon25a88092016-12-01 09:36:50 -050063 static uint32_t kClassID = GenOpClassID(); \
reed1b55a962015-09-17 20:16:13 -070064 return kClassID; \
65 }
66
Brian Salomonf8334782017-01-03 09:42:58 -050067class GrOp : private SkNoncopyable {
joshualitt4d8da812015-01-28 12:53:54 -080068public:
Brian Salomon588cec72018-11-14 13:56:37 -050069 virtual ~GrOp() = default;
joshualitt4d8da812015-01-28 12:53:54 -080070
71 virtual const char* name() const = 0;
joshualitt4d8da812015-01-28 12:53:54 -080072
Michael Ludwigfcdd0612019-11-25 08:34:31 -050073 using VisitProxyFunc = std::function<void(GrSurfaceProxy*, GrMipMapped)>;
Robert Phillipsb493eeb2017-09-13 13:10:52 -040074
Chris Dalton1706cbf2019-05-21 19:35:29 -060075 virtual void visitProxies(const VisitProxyFunc&) const {
Robert Phillipsb493eeb2017-09-13 13:10:52 -040076 // This default implementation assumes the op has no proxies
77 }
78
Brian Salomon7eae3e02018-08-07 14:02:38 +000079 enum class CombineResult {
80 /**
81 * The op that combineIfPossible was called on now represents its own work plus that of
Brian Salomond25f5bc2018-08-08 11:25:17 -040082 * the passed op. The passed op should be destroyed without being flushed. Currently it
83 * is not legal to merge an op passed to combineIfPossible() the passed op is already in a
84 * chain (though the op on which combineIfPossible() was called may be).
Brian Salomon7eae3e02018-08-07 14:02:38 +000085 */
86 kMerged,
87 /**
Brian Salomond25f5bc2018-08-08 11:25:17 -040088 * The caller *may* (but is not required) to chain these ops together. If they are chained
89 * then prepare() and execute() will be called on the head op but not the other ops in the
90 * chain. The head op will prepare and execute on behalf of all the ops in the chain.
91 */
92 kMayChain,
93 /**
Brian Salomon7eae3e02018-08-07 14:02:38 +000094 * The ops cannot be combined.
95 */
96 kCannotCombine
97 };
98
Michael Ludwig28b0c5d2019-12-19 14:51:00 -050099 // The arenas are the same as what was available when the op was created.
100 CombineResult combineIfPossible(GrOp* that, GrRecordingContext::Arenas* arena,
101 const GrCaps& caps);
joshualitt4d8da812015-01-28 12:53:54 -0800102
bsalomon88cf17d2016-07-08 06:40:56 -0700103 const SkRect& bounds() const {
104 SkASSERT(kUninitialized_BoundsFlag != fBoundsFlags);
105 return fBounds;
106 }
107
Brian Salomon9e50f7b2017-03-06 12:02:34 -0500108 void setClippedBounds(const SkRect& clippedBounds) {
109 fBounds = clippedBounds;
110 // The clipped bounds already incorporate any effect of the bounds flags.
111 fBoundsFlags = 0;
112 }
113
bsalomon88cf17d2016-07-08 06:40:56 -0700114 bool hasAABloat() const {
115 SkASSERT(fBoundsFlags != kUninitialized_BoundsFlag);
116 return SkToBool(fBoundsFlags & kAABloat_BoundsFlag);
117 }
118
119 bool hasZeroArea() const {
120 SkASSERT(fBoundsFlags != kUninitialized_BoundsFlag);
121 return SkToBool(fBoundsFlags & kZeroArea_BoundsFlag);
122 }
joshualitt99c7c072015-05-01 13:43:30 -0700123
Robert Phillipsc994a932018-06-19 13:09:54 -0400124#ifdef SK_DEBUG
125 // All GrOp-derived classes should be allocated in and deleted from a GrMemoryPool
joshualitt4d8da812015-01-28 12:53:54 -0800126 void* operator new(size_t size);
127 void operator delete(void* target);
128
129 void* operator new(size_t size, void* placement) {
130 return ::operator new(size, placement);
131 }
132 void operator delete(void* target, void* placement) {
133 ::operator delete(target, placement);
134 }
Robert Phillipsc994a932018-06-19 13:09:54 -0400135#endif
joshualitt4d8da812015-01-28 12:53:54 -0800136
137 /**
Brian Salomon25a88092016-12-01 09:36:50 -0500138 * Helper for safely down-casting to a GrOp subclass
bsalomonabd30f52015-08-13 13:34:48 -0700139 */
reed1b55a962015-09-17 20:16:13 -0700140 template <typename T> const T& cast() const {
141 SkASSERT(T::ClassID() == this->classID());
142 return *static_cast<const T*>(this);
143 }
144
145 template <typename T> T* cast() {
146 SkASSERT(T::ClassID() == this->classID());
147 return static_cast<T*>(this);
148 }
joshualitt4d8da812015-01-28 12:53:54 -0800149
Brian Salomon25a88092016-12-01 09:36:50 -0500150 uint32_t classID() const { SkASSERT(kIllegalOpID != fClassID); return fClassID; }
joshualitt4d8da812015-01-28 12:53:54 -0800151
joshualitt08e65e72016-03-08 09:31:15 -0800152 // We lazily initialize the uniqueID because currently the only user is GrAuditTrail
halcanary9d524f22016-03-29 09:03:52 -0700153 uint32_t uniqueID() const {
Brian Salomon25a88092016-12-01 09:36:50 -0500154 if (kIllegalOpID == fUniqueID) {
155 fUniqueID = GenOpID();
joshualitt08e65e72016-03-08 09:31:15 -0800156 }
halcanary9d524f22016-03-29 09:03:52 -0700157 return fUniqueID;
joshualitt08e65e72016-03-08 09:31:15 -0800158 }
joshualittca1f07e2015-08-07 08:11:19 -0700159
Brian Salomonbde42852016-12-21 11:37:49 -0500160 /**
Robert Phillips7327c9d2019-10-08 16:32:56 -0400161 * This can optionally be called before 'prepare' (but after sorting). Each op that overrides
162 * onPrePrepare must be prepared to handle both cases (when onPrePrepare has been called
163 * ahead of time and when it has not been called).
164 */
Robert Phillips8053c972019-11-21 10:44:53 -0500165 void prePrepare(GrRecordingContext* context, GrSurfaceProxyView* dstView, GrAppliedClip* clip,
166 const GrXferProcessor::DstProxyView& dstProxyView) {
167 this->onPrePrepare(context, dstView, clip, dstProxyView);
Robert Phillips61fc7992019-10-22 11:58:17 -0400168 }
Robert Phillips7327c9d2019-10-08 16:32:56 -0400169
170 /**
Brian Salomonbde42852016-12-21 11:37:49 -0500171 * Called prior to executing. The op should perform any resource creation or data transfers
172 * necessary before execute() is called.
173 */
Brian Salomon742e31d2016-12-07 17:06:19 -0500174 void prepare(GrOpFlushState* state) { this->onPrepare(state); }
bsalomon53469832015-08-18 09:20:09 -0700175
Brian Salomon25a88092016-12-01 09:36:50 -0500176 /** Issues the op's commands to GrGpu. */
Brian Salomon588cec72018-11-14 13:56:37 -0500177 void execute(GrOpFlushState* state, const SkRect& chainBounds) {
Brian Salomon5f394272019-07-02 14:07:49 -0400178 TRACE_EVENT0("skia.gpu", name());
Brian Salomon588cec72018-11-14 13:56:37 -0500179 this->onExecute(state, chainBounds);
Xiao Yu97126012018-04-25 18:11:44 -0700180 }
bsalomon53469832015-08-18 09:20:09 -0700181
Brian Salomon25a88092016-12-01 09:36:50 -0500182 /** Used for spewing information about ops when debugging. */
Brian Osman9a390ac2018-11-12 09:47:48 -0500183#ifdef SK_DEBUG
robertphillips44fbc792016-06-29 06:56:12 -0700184 virtual SkString dumpInfo() const {
185 SkString string;
Brian Salomon25a88092016-12-01 09:36:50 -0500186 string.appendf("OpBounds: [L: %.2f, T: %.2f, R: %.2f, B: %.2f]\n",
robertphillips44fbc792016-06-29 06:56:12 -0700187 fBounds.fLeft, fBounds.fTop, fBounds.fRight, fBounds.fBottom);
188 return string;
189 }
Brian Osman9a390ac2018-11-12 09:47:48 -0500190#else
191 SkString dumpInfo() const { return SkString("<Op information unavailable>"); }
192#endif
bsalomon53469832015-08-18 09:20:09 -0700193
Brian Salomond25f5bc2018-08-08 11:25:17 -0400194 /**
195 * A helper for iterating over an op chain in a range for loop that also downcasts to a GrOp
196 * subclass. E.g.:
197 * for (MyOpSubClass& op : ChainRange<MyOpSubClass>(this)) {
198 * // ...
199 * }
200 */
Brian Salomon588cec72018-11-14 13:56:37 -0500201 template <typename OpSubclass = GrOp> class ChainRange {
Brian Salomond25f5bc2018-08-08 11:25:17 -0400202 private:
203 class Iter {
204 public:
Brian Salomon588cec72018-11-14 13:56:37 -0500205 explicit Iter(const OpSubclass* head) : fCurr(head) {}
206 inline Iter& operator++() {
207 return *this = Iter(static_cast<const OpSubclass*>(fCurr->nextInChain()));
208 }
209 const OpSubclass& operator*() const { return *fCurr; }
Brian Salomond25f5bc2018-08-08 11:25:17 -0400210 bool operator!=(const Iter& that) const { return fCurr != that.fCurr; }
211
212 private:
Brian Salomon588cec72018-11-14 13:56:37 -0500213 const OpSubclass* fCurr;
Brian Salomond25f5bc2018-08-08 11:25:17 -0400214 };
Brian Salomon588cec72018-11-14 13:56:37 -0500215 const OpSubclass* fHead;
Brian Salomond25f5bc2018-08-08 11:25:17 -0400216
217 public:
Brian Salomon588cec72018-11-14 13:56:37 -0500218 explicit ChainRange(const OpSubclass* head) : fHead(head) {}
Brian Salomond25f5bc2018-08-08 11:25:17 -0400219 Iter begin() { return Iter(fHead); }
220 Iter end() { return Iter(nullptr); }
221 };
222
Brian Salomon588cec72018-11-14 13:56:37 -0500223 /**
224 * Concatenates two op chains. This op must be a tail and the passed op must be a head. The ops
225 * must be of the same subclass.
226 */
227 void chainConcat(std::unique_ptr<GrOp>);
Brian Salomond25f5bc2018-08-08 11:25:17 -0400228 /** Returns true if this is the head of a chain (including a length 1 chain). */
Brian Salomon588cec72018-11-14 13:56:37 -0500229 bool isChainHead() const { return !fPrevInChain; }
Brian Salomond25f5bc2018-08-08 11:25:17 -0400230 /** Returns true if this is the tail of a chain (including a length 1 chain). */
231 bool isChainTail() const { return !fNextInChain; }
Brian Salomond25f5bc2018-08-08 11:25:17 -0400232 /** The next op in the chain. */
Brian Salomon588cec72018-11-14 13:56:37 -0500233 GrOp* nextInChain() const { return fNextInChain.get(); }
234 /** The previous op in the chain. */
235 GrOp* prevInChain() const { return fPrevInChain; }
236 /**
237 * Cuts the chain after this op. The returned op is the op that was previously next in the
238 * chain or null if this was already a tail.
239 */
240 std::unique_ptr<GrOp> cutChain();
241 SkDEBUGCODE(void validateChain(GrOp* expectedTail = nullptr) const);
Brian Salomond25f5bc2018-08-08 11:25:17 -0400242
Ethan Nicholas029b22c2018-10-18 16:49:56 -0400243#ifdef SK_DEBUG
244 virtual void validate() const {}
245#endif
246
joshualitt4d8da812015-01-28 12:53:54 -0800247protected:
Brian Salomond25f5bc2018-08-08 11:25:17 -0400248 GrOp(uint32_t classID);
249
bsalomon88cf17d2016-07-08 06:40:56 -0700250 /**
Brian Salomon25a88092016-12-01 09:36:50 -0500251 * Indicates that the op will produce geometry that extends beyond its bounds for the
bsalomon88cf17d2016-07-08 06:40:56 -0700252 * purpose of ensuring that the fragment shader runs on partially covered pixels for
253 * non-MSAA antialiasing.
254 */
Chris Dalton3b51df12017-11-27 14:33:06 -0700255 enum class HasAABloat : bool {
256 kNo = false,
257 kYes = true
bsalomon88cf17d2016-07-08 06:40:56 -0700258 };
259 /**
Greg Daniel5faf4742019-10-01 15:14:44 -0400260 * Indicates that the geometry being drawn in a hairline stroke. A point that is drawn in device
261 * space is also considered a hairline.
bsalomon88cf17d2016-07-08 06:40:56 -0700262 */
Greg Daniel5faf4742019-10-01 15:14:44 -0400263 enum class IsHairline : bool {
Chris Dalton3b51df12017-11-27 14:33:06 -0700264 kNo = false,
265 kYes = true
bsalomon88cf17d2016-07-08 06:40:56 -0700266 };
Robert Phillips65a88fa2017-08-08 08:36:22 -0400267
Greg Daniel5faf4742019-10-01 15:14:44 -0400268 void setBounds(const SkRect& newBounds, HasAABloat aabloat, IsHairline zeroArea) {
bsalomon88cf17d2016-07-08 06:40:56 -0700269 fBounds = newBounds;
270 this->setBoundsFlags(aabloat, zeroArea);
271 }
272 void setTransformedBounds(const SkRect& srcBounds, const SkMatrix& m,
Greg Daniel5faf4742019-10-01 15:14:44 -0400273 HasAABloat aabloat, IsHairline zeroArea) {
bsalomon88cf17d2016-07-08 06:40:56 -0700274 m.mapRect(&fBounds, srcBounds);
275 this->setBoundsFlags(aabloat, zeroArea);
276 }
Robert Phillips65a88fa2017-08-08 08:36:22 -0400277 void makeFullScreen(GrSurfaceProxy* proxy) {
Brian Salomon9f2b86c2019-10-22 10:37:46 -0400278 this->setBounds(proxy->getBoundsRect(), HasAABloat::kNo, IsHairline::kNo);
Robert Phillips65a88fa2017-08-08 08:36:22 -0400279 }
joshualitt99c7c072015-05-01 13:43:30 -0700280
Brian Salomonb41417f2018-10-24 08:58:48 -0400281 static uint32_t GenOpClassID() { return GenID(&gCurrOpClassID); }
282
283private:
Brian Salomon25a88092016-12-01 09:36:50 -0500284 void joinBounds(const GrOp& that) {
bsalomon88cf17d2016-07-08 06:40:56 -0700285 if (that.hasAABloat()) {
286 fBoundsFlags |= kAABloat_BoundsFlag;
287 }
288 if (that.hasZeroArea()) {
289 fBoundsFlags |= kZeroArea_BoundsFlag;
290 }
291 return fBounds.joinPossiblyEmptyRect(that.fBounds);
292 }
293
Michael Ludwig28b0c5d2019-12-19 14:51:00 -0500294 virtual CombineResult onCombineIfPossible(GrOp*, GrRecordingContext::Arenas*, const GrCaps&) {
Brian Salomon7eae3e02018-08-07 14:02:38 +0000295 return CombineResult::kCannotCombine;
296 }
bsalomonabd30f52015-08-13 13:34:48 -0700297
Robert Phillips8053c972019-11-21 10:44:53 -0500298 // TODO: the parameters to onPrePrepare mirror GrOpFlushState::OpArgs - fuse the two?
299 virtual void onPrePrepare(GrRecordingContext*,
Brian Salomon8afde5f2020-04-01 16:22:00 -0400300 const GrSurfaceProxyView* writeView,
Robert Phillips8053c972019-11-21 10:44:53 -0500301 GrAppliedClip*,
Robert Phillipsc655c3a2020-03-18 13:23:45 -0400302 const GrXferProcessor::DstProxyView&) = 0;
Brian Salomon742e31d2016-12-07 17:06:19 -0500303 virtual void onPrepare(GrOpFlushState*) = 0;
Brian Salomon588cec72018-11-14 13:56:37 -0500304 // If this op is chained then chainBounds is the union of the bounds of all ops in the chain.
305 // Otherwise, this op's bounds.
306 virtual void onExecute(GrOpFlushState*, const SkRect& chainBounds) = 0;
bsalomon53469832015-08-18 09:20:09 -0700307
Mike Klein0ec1c572018-12-04 11:52:51 -0500308 static uint32_t GenID(std::atomic<uint32_t>* idCounter) {
309 uint32_t id = (*idCounter)++;
310 if (id == 0) {
Ben Wagnerb4aab9a2017-08-16 10:53:04 -0400311 SK_ABORT("This should never wrap as it should only be called once for each GrOp "
bsalomonabd30f52015-08-13 13:34:48 -0700312 "subclass.");
313 }
314 return id;
315 }
316
Greg Daniel5faf4742019-10-01 15:14:44 -0400317 void setBoundsFlags(HasAABloat aabloat, IsHairline zeroArea) {
bsalomon88cf17d2016-07-08 06:40:56 -0700318 fBoundsFlags = 0;
319 fBoundsFlags |= (HasAABloat::kYes == aabloat) ? kAABloat_BoundsFlag : 0;
Greg Daniel5faf4742019-10-01 15:14:44 -0400320 fBoundsFlags |= (IsHairline ::kYes == zeroArea) ? kZeroArea_BoundsFlag : 0;
bsalomon88cf17d2016-07-08 06:40:56 -0700321 }
322
bsalomonabd30f52015-08-13 13:34:48 -0700323 enum {
Brian Salomon25a88092016-12-01 09:36:50 -0500324 kIllegalOpID = 0,
bsalomonabd30f52015-08-13 13:34:48 -0700325 };
326
bsalomon88cf17d2016-07-08 06:40:56 -0700327 enum BoundsFlags {
328 kAABloat_BoundsFlag = 0x1,
329 kZeroArea_BoundsFlag = 0x2,
330 SkDEBUGCODE(kUninitialized_BoundsFlag = 0x4)
331 };
332
Brian Salomon588cec72018-11-14 13:56:37 -0500333 std::unique_ptr<GrOp> fNextInChain;
334 GrOp* fPrevInChain = nullptr;
bsalomon88cf17d2016-07-08 06:40:56 -0700335 const uint16_t fClassID;
336 uint16_t fBoundsFlags;
337
Brian Salomon25a88092016-12-01 09:36:50 -0500338 static uint32_t GenOpID() { return GenID(&gCurrOpUniqueID); }
Brian Salomond25f5bc2018-08-08 11:25:17 -0400339 mutable uint32_t fUniqueID = SK_InvalidUniqueID;
bsalomon88cf17d2016-07-08 06:40:56 -0700340 SkRect fBounds;
341
Mike Klein0ec1c572018-12-04 11:52:51 -0500342 static std::atomic<uint32_t> gCurrOpUniqueID;
343 static std::atomic<uint32_t> gCurrOpClassID;
bsalomonabd30f52015-08-13 13:34:48 -0700344};
345
joshualitt4d8da812015-01-28 12:53:54 -0800346#endif