blob: 407d71e080aa8f3186973e25418e1e6982e545eb [file] [log] [blame]
Brian Salomon92ce5942017-01-18 11:01:10 -05001/*
2 * Copyright 2017 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#ifndef GrProcessorSet_DEFINED
9#define GrProcessorSet_DEFINED
10
11#include "GrFragmentProcessor.h"
12#include "GrPaint.h"
Brian Salomona811b122017-03-30 08:21:32 -040013#include "GrProcessorAnalysis.h"
Brian Salomon92ce5942017-01-18 11:01:10 -050014#include "SkTemplates.h"
Hal Canaryce78bad2017-05-04 14:15:40 -040015#include "GrXferProcessor.h"
Brian Salomon92ce5942017-01-18 11:01:10 -050016
Brian Salomon5298dc82017-02-22 11:52:03 -050017class GrAppliedClip;
Brian Salomon92ce5942017-01-18 11:01:10 -050018class GrXPFactory;
19
20class GrProcessorSet : private SkNoncopyable {
Brian Salomon6d4b65e2017-05-03 17:06:09 -040021private:
22 // Arbitrary constructor arg for empty set and analysis
23 enum class Empty { kEmpty };
24
Brian Salomon92ce5942017-01-18 11:01:10 -050025public:
26 GrProcessorSet(GrPaint&& paint);
27
Brian Salomon54d212e2017-03-21 14:22:38 -040028 ~GrProcessorSet();
29
Brian Salomon92ce5942017-01-18 11:01:10 -050030 int numColorFragmentProcessors() const { return fColorFragmentProcessorCnt; }
31 int numCoverageFragmentProcessors() const {
Brian Salomon70288c02017-03-24 12:27:17 -040032 return this->numFragmentProcessors() - fColorFragmentProcessorCnt;
Brian Salomon92ce5942017-01-18 11:01:10 -050033 }
Brian Salomon70288c02017-03-24 12:27:17 -040034 int numFragmentProcessors() const {
35 return fFragmentProcessors.count() - fFragmentProcessorOffset;
36 }
Brian Salomon92ce5942017-01-18 11:01:10 -050037
38 const GrFragmentProcessor* colorFragmentProcessor(int idx) const {
39 SkASSERT(idx < fColorFragmentProcessorCnt);
Brian Salomon70288c02017-03-24 12:27:17 -040040 return fFragmentProcessors[idx + fFragmentProcessorOffset];
Brian Salomon92ce5942017-01-18 11:01:10 -050041 }
42 const GrFragmentProcessor* coverageFragmentProcessor(int idx) const {
Brian Salomon70288c02017-03-24 12:27:17 -040043 return fFragmentProcessors[idx + fColorFragmentProcessorCnt + fFragmentProcessorOffset];
Brian Salomon92ce5942017-01-18 11:01:10 -050044 }
45
Brian Salomon48d1b4c2017-04-08 07:38:53 -040046 const GrXferProcessor* xferProcessor() const {
47 SkASSERT(this->isFinalized());
48 return fXP.fProcessor;
49 }
Brian Salomond61c9d92017-04-10 10:54:25 -040050 sk_sp<const GrXferProcessor> refXferProcessor() const {
51 SkASSERT(this->isFinalized());
52 return sk_ref_sp(fXP.fProcessor);
53 }
Brian Salomon92ce5942017-01-18 11:01:10 -050054
Brian Salomon48d1b4c2017-04-08 07:38:53 -040055 /** Comparisons are only legal on finalized processor sets. */
Brian Salomon54d212e2017-03-21 14:22:38 -040056 bool operator==(const GrProcessorSet& that) const;
57 bool operator!=(const GrProcessorSet& that) const { return !(*this == that); }
58
Brian Salomon5298dc82017-02-22 11:52:03 -050059 /**
Brian Salomon48d1b4c2017-04-08 07:38:53 -040060 * This is used to report results of processor analysis when a processor set is finalized (see
61 * below).
Brian Salomon5298dc82017-02-22 11:52:03 -050062 */
Brian Salomona811b122017-03-30 08:21:32 -040063 class Analysis {
Brian Salomon5298dc82017-02-22 11:52:03 -050064 public:
Brian Salomon48d1b4c2017-04-08 07:38:53 -040065 Analysis(const Analysis&) = default;
66 Analysis() { *reinterpret_cast<uint32_t*>(this) = 0; }
Brian Salomon8d2f90b2017-03-13 09:11:58 -040067
Brian Salomon48d1b4c2017-04-08 07:38:53 -040068 bool isInitialized() const { return fIsInitialized; }
Brian Salomonbfafcba2017-03-02 08:49:19 -050069 bool usesLocalCoords() const { return fUsesLocalCoords; }
Brian Salomon31853842017-03-28 16:32:05 -040070 bool requiresDstTexture() const { return fRequiresDstTexture; }
71 bool canCombineOverlappedStencilAndCover() const {
72 return fCanCombineOverlappedStencilAndCover;
73 }
Brian Salomon4fc77402017-03-30 16:48:26 -040074 bool requiresBarrierBetweenOverlappingDraws() const {
75 return fRequiresBarrierBetweenOverlappingDraws;
76 }
Brian Salomon5298dc82017-02-22 11:52:03 -050077 bool isCompatibleWithCoverageAsAlpha() const { return fCompatibleWithCoverageAsAlpha; }
Brian Salomon48d1b4c2017-04-08 07:38:53 -040078
79 bool inputColorIsIgnored() const { return fInputColorType == kIgnored_InputColorType; }
80 bool inputColorIsOverridden() const {
81 return fInputColorType == kOverridden_InputColorType;
Brian Salomonc0b642c2017-03-27 13:09:36 -040082 }
Brian Salomon5298dc82017-02-22 11:52:03 -050083
84 private:
Brian Salomon6d4b65e2017-05-03 17:06:09 -040085 constexpr Analysis(Empty)
86 : fUsesLocalCoords(false)
87 , fCompatibleWithCoverageAsAlpha(true)
88 , fRequiresDstTexture(false)
89 , fCanCombineOverlappedStencilAndCover(true)
90 , fRequiresBarrierBetweenOverlappingDraws(false)
91 , fIsInitialized(true)
92 , fInputColorType(kOriginal_InputColorType) {}
Brian Salomon48d1b4c2017-04-08 07:38:53 -040093 enum InputColorType : uint32_t {
94 kOriginal_InputColorType,
95 kOverridden_InputColorType,
96 kIgnored_InputColorType
97 };
Brian Salomon5298dc82017-02-22 11:52:03 -050098
Brian Salomon48d1b4c2017-04-08 07:38:53 -040099 // MSVS 2015 won't pack different underlying types
100 using PackedBool = uint32_t;
101 using PackedInputColorType = uint32_t;
Brian Salomon5298dc82017-02-22 11:52:03 -0500102
Brian Salomon8d2f90b2017-03-13 09:11:58 -0400103 PackedBool fUsesLocalCoords : 1;
104 PackedBool fCompatibleWithCoverageAsAlpha : 1;
Brian Salomon31853842017-03-28 16:32:05 -0400105 PackedBool fRequiresDstTexture : 1;
106 PackedBool fCanCombineOverlappedStencilAndCover : 1;
Brian Salomon4fc77402017-03-30 16:48:26 -0400107 PackedBool fRequiresBarrierBetweenOverlappingDraws : 1;
Brian Salomon48d1b4c2017-04-08 07:38:53 -0400108 PackedBool fIsInitialized : 1;
109 PackedInputColorType fInputColorType : 2;
Brian Salomon70288c02017-03-24 12:27:17 -0400110
111 friend class GrProcessorSet;
Brian Salomon5298dc82017-02-22 11:52:03 -0500112 };
Brian Salomon48d1b4c2017-04-08 07:38:53 -0400113 GR_STATIC_ASSERT(sizeof(Analysis) <= sizeof(uint32_t));
Brian Salomon5298dc82017-02-22 11:52:03 -0500114
Brian Salomon48d1b4c2017-04-08 07:38:53 -0400115 /**
116 * This analyzes the processors given an op's input color and coverage as well as a clip. The
117 * state of the processor set may change to an equivalent but more optimal set of processors.
118 * This new state requires that the caller respect the returned 'inputColorOverride'. This is
119 * indicated by the returned Analysis's inputColorIsOverriden(). 'inputColorOverride' will not
120 * be written if the analysis does not override the input color.
121 *
122 * This must be called before the processor set is used to construct a GrPipeline and may only
123 * be called once.
124 *
125 * This also puts the processors in "pending execution" state and must be called when an op
126 * that owns a processor set is recorded to ensure pending and writes are propagated to
127 * resources referred to by the processors. Otherwise, data hazards may occur.
128 */
129 Analysis finalize(const GrProcessorAnalysisColor& colorInput,
130 const GrProcessorAnalysisCoverage coverageInput, const GrAppliedClip*,
131 bool isMixedSamples, const GrCaps&, GrColor* inputColorOverride);
132
133 bool isFinalized() const { return SkToBool(kFinalized_Flag & fFlags); }
Brian Salomon70288c02017-03-24 12:27:17 -0400134
Brian Salomon292bf7a2017-05-17 09:43:55 -0400135 static const GrProcessorSet& EmptySet();
Brian Salomon6d4b65e2017-05-03 17:06:09 -0400136 static constexpr const Analysis EmptySetAnalysis() { return Analysis(Empty::kEmpty); }
137
Brian Salomon82dfd3d2017-06-14 12:30:35 -0400138 SkString dumpProcessors() const;
139
Brian Salomon92ce5942017-01-18 11:01:10 -0500140private:
Brian Salomon6d4b65e2017-05-03 17:06:09 -0400141 GrProcessorSet(Empty) : fXP((const GrXferProcessor*)nullptr), fFlags(kFinalized_Flag) {}
Brian Salomon6d4b65e2017-05-03 17:06:09 -0400142
Brian Salomona811b122017-03-30 08:21:32 -0400143 // This absurdly large limit allows Analysis and this to pack fields together.
Brian Salomon70288c02017-03-24 12:27:17 -0400144 static constexpr int kMaxColorProcessors = UINT8_MAX;
Brian Salomon8d2f90b2017-03-13 09:11:58 -0400145
Brian Salomone23bffd2017-06-02 11:01:10 -0400146 enum Flags : uint16_t { kFinalized_Flag = 0x1 };
Brian Salomon8d2f90b2017-03-13 09:11:58 -0400147
Brian Salomon48d1b4c2017-04-08 07:38:53 -0400148 union XP {
149 XP(const GrXPFactory* factory) : fFactory(factory) {}
Brian Salomon6d4b65e2017-05-03 17:06:09 -0400150 XP(const GrXferProcessor* processor) : fProcessor(processor) {}
Brian Salomon48d1b4c2017-04-08 07:38:53 -0400151 const GrXPFactory* fFactory;
152 const GrXferProcessor* fProcessor;
153 };
154
155 const GrXPFactory* xpFactory() const {
156 SkASSERT(!this->isFinalized());
157 return fXP.fFactory;
158 }
159
Brian Salomon8d2f90b2017-03-13 09:11:58 -0400160 SkAutoSTArray<4, const GrFragmentProcessor*> fFragmentProcessors;
Brian Salomon48d1b4c2017-04-08 07:38:53 -0400161 XP fXP;
Brian Salomon6d4b65e2017-05-03 17:06:09 -0400162 uint8_t fColorFragmentProcessorCnt = 0;
Brian Salomon70288c02017-03-24 12:27:17 -0400163 uint8_t fFragmentProcessorOffset = 0;
164 uint8_t fFlags;
Brian Salomon92ce5942017-01-18 11:01:10 -0500165};
166
167#endif