blob: f6cd2d477a959daeb3e9a6be4b2d3a60f73f582b [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#include "GrProcessorSet.h"
Brian Salomon5298dc82017-02-22 11:52:03 -05009#include "GrAppliedClip.h"
10#include "GrCaps.h"
Chris Daltonb8fff0d2019-03-05 10:11:58 -070011#include "GrUserStencilSettings.h"
Brian Salomon31853842017-03-28 16:32:05 -040012#include "GrXferProcessor.h"
Brian Salomon477d0ef2017-07-14 10:12:26 -040013#include "SkBlendModePriv.h"
Brian Salomon48d1b4c2017-04-08 07:38:53 -040014#include "effects/GrPorterDuffXferProcessor.h"
Brian Salomon92ce5942017-01-18 11:01:10 -050015
Brian Salomon292bf7a2017-05-17 09:43:55 -040016const GrProcessorSet& GrProcessorSet::EmptySet() {
Brian Salomon91326c32017-08-09 16:02:19 -040017 static GrProcessorSet gEmpty(GrProcessorSet::Empty::kEmpty);
Brian Salomon292bf7a2017-05-17 09:43:55 -040018 return gEmpty;
19}
Brian Salomon6d4b65e2017-05-03 17:06:09 -040020
Brian Salomon91326c32017-08-09 16:02:19 -040021GrProcessorSet GrProcessorSet::MakeEmptySet() {
22 return GrProcessorSet(GrProcessorSet::Empty::kEmpty);
23}
24
Brian Salomon48d1b4c2017-04-08 07:38:53 -040025GrProcessorSet::GrProcessorSet(GrPaint&& paint) : fXP(paint.getXPFactory()) {
Brian Salomonf87e2b92017-01-19 11:31:50 -050026 fFlags = 0;
Brian Salomon8d2f90b2017-03-13 09:11:58 -040027 if (paint.numColorFragmentProcessors() <= kMaxColorProcessors) {
28 fColorFragmentProcessorCnt = paint.numColorFragmentProcessors();
29 fFragmentProcessors.reset(paint.numTotalFragmentProcessors());
30 int i = 0;
31 for (auto& fp : paint.fColorFragmentProcessors) {
Brian Salomon5f970fe2017-06-16 17:30:59 -040032 SkASSERT(fp.get());
Brian Salomonaff329b2017-08-11 09:40:37 -040033 fFragmentProcessors[i++] = std::move(fp);
Brian Salomon8d2f90b2017-03-13 09:11:58 -040034 }
35 for (auto& fp : paint.fCoverageFragmentProcessors) {
Brian Salomon5f970fe2017-06-16 17:30:59 -040036 SkASSERT(fp.get());
Brian Salomonaff329b2017-08-11 09:40:37 -040037 fFragmentProcessors[i++] = std::move(fp);
Brian Salomon8d2f90b2017-03-13 09:11:58 -040038 }
Brian Salomon8d2f90b2017-03-13 09:11:58 -040039 } else {
40 SkDebugf("Insane number of color fragment processors in paint. Dropping all processors.");
41 fColorFragmentProcessorCnt = 0;
Brian Salomonf87e2b92017-01-19 11:31:50 -050042 }
Mike Klein16885072018-12-11 09:54:31 -050043 SkDEBUGCODE(paint.fAlive = false;)
Brian Salomon92ce5942017-01-18 11:01:10 -050044}
Brian Salomon5298dc82017-02-22 11:52:03 -050045
Brian Salomon477d0ef2017-07-14 10:12:26 -040046GrProcessorSet::GrProcessorSet(SkBlendMode mode)
47 : fXP(SkBlendMode_AsXPFactory(mode))
48 , fColorFragmentProcessorCnt(0)
49 , fFragmentProcessorOffset(0)
50 , fFlags(0) {}
51
Brian Salomonaff329b2017-08-11 09:40:37 -040052GrProcessorSet::GrProcessorSet(std::unique_ptr<GrFragmentProcessor> colorFP)
Brian Salomon82ddc942017-07-14 12:00:13 -040053 : fFragmentProcessors(1)
54 , fXP((const GrXPFactory*)nullptr)
55 , fColorFragmentProcessorCnt(1)
56 , fFragmentProcessorOffset(0)
57 , fFlags(0) {
58 SkASSERT(colorFP);
Brian Salomonaff329b2017-08-11 09:40:37 -040059 fFragmentProcessors[0] = std::move(colorFP);
Brian Salomon82ddc942017-07-14 12:00:13 -040060}
61
Brian Salomon91326c32017-08-09 16:02:19 -040062GrProcessorSet::GrProcessorSet(GrProcessorSet&& that)
63 : fXP(std::move(that.fXP))
64 , fColorFragmentProcessorCnt(that.fColorFragmentProcessorCnt)
65 , fFragmentProcessorOffset(0)
66 , fFlags(that.fFlags) {
67 fFragmentProcessors.reset(that.fFragmentProcessors.count() - that.fFragmentProcessorOffset);
68 for (int i = 0; i < fFragmentProcessors.count(); ++i) {
Brian Salomonaff329b2017-08-11 09:40:37 -040069 fFragmentProcessors[i] =
70 std::move(that.fFragmentProcessors[i + that.fFragmentProcessorOffset]);
Brian Salomon91326c32017-08-09 16:02:19 -040071 }
72 that.fColorFragmentProcessorCnt = 0;
73 that.fFragmentProcessors.reset(0);
74}
75
Brian Salomon54d212e2017-03-21 14:22:38 -040076GrProcessorSet::~GrProcessorSet() {
Brian Salomon48d1b4c2017-04-08 07:38:53 -040077 if (this->isFinalized() && this->xferProcessor()) {
Brian Salomond61c9d92017-04-10 10:54:25 -040078 this->xferProcessor()->unref();
Brian Salomon54d212e2017-03-21 14:22:38 -040079 }
80}
81
Brian Osman9a390ac2018-11-12 09:47:48 -050082#ifdef SK_DEBUG
Brian Salomon82dfd3d2017-06-14 12:30:35 -040083SkString dump_fragment_processor_tree(const GrFragmentProcessor* fp, int indentCnt) {
84 SkString result;
85 SkString indentString;
86 for (int i = 0; i < indentCnt; ++i) {
87 indentString.append(" ");
88 }
89 result.appendf("%s%s %s \n", indentString.c_str(), fp->name(), fp->dumpInfo().c_str());
90 if (fp->numChildProcessors()) {
91 for (int i = 0; i < fp->numChildProcessors(); ++i) {
92 result += dump_fragment_processor_tree(&fp->childProcessor(i), indentCnt + 1);
93 }
94 }
95 return result;
96}
97
98SkString GrProcessorSet::dumpProcessors() const {
99 SkString result;
100 if (this->numFragmentProcessors()) {
101 if (this->numColorFragmentProcessors()) {
102 result.append("Color Fragment Processors:\n");
103 for (int i = 0; i < this->numColorFragmentProcessors(); ++i) {
104 result += dump_fragment_processor_tree(this->colorFragmentProcessor(i), 1);
105 }
106 } else {
107 result.append("No color fragment processors.\n");
108 }
109 if (this->numCoverageFragmentProcessors()) {
110 result.append("Coverage Fragment Processors:\n");
111 for (int i = 0; i < this->numColorFragmentProcessors(); ++i) {
112 result += dump_fragment_processor_tree(this->coverageFragmentProcessor(i), 1);
113 }
114 } else {
115 result.append("No coverage fragment processors.\n");
116 }
117 } else {
118 result.append("No color or coverage fragment processors.\n");
119 }
120 if (this->isFinalized()) {
121 result.append("Xfer Processor: ");
122 if (this->xferProcessor()) {
123 result.appendf("%s\n", this->xferProcessor()->name());
124 } else {
125 result.append("SrcOver\n");
126 }
127 } else {
Derek Sollenberger08c06292019-01-24 16:30:28 +0000128 result.append("XP Factory dumping not implemented.\n");
Brian Salomon82dfd3d2017-06-14 12:30:35 -0400129 }
130 return result;
131}
Brian Osman9a390ac2018-11-12 09:47:48 -0500132#endif
Brian Salomon82dfd3d2017-06-14 12:30:35 -0400133
Brian Salomon54d212e2017-03-21 14:22:38 -0400134bool GrProcessorSet::operator==(const GrProcessorSet& that) const {
Brian Salomon48d1b4c2017-04-08 07:38:53 -0400135 SkASSERT(this->isFinalized());
136 SkASSERT(that.isFinalized());
Brian Salomon70288c02017-03-24 12:27:17 -0400137 int fpCount = this->numFragmentProcessors();
Brian Salomon48d1b4c2017-04-08 07:38:53 -0400138 if (((fFlags ^ that.fFlags) & ~kFinalized_Flag) || fpCount != that.numFragmentProcessors() ||
Brian Salomon54d212e2017-03-21 14:22:38 -0400139 fColorFragmentProcessorCnt != that.fColorFragmentProcessorCnt) {
140 return false;
141 }
Brian Salomon70288c02017-03-24 12:27:17 -0400142
143 for (int i = 0; i < fpCount; ++i) {
144 int a = i + fFragmentProcessorOffset;
145 int b = i + that.fFragmentProcessorOffset;
146 if (!fFragmentProcessors[a]->isEqual(*that.fFragmentProcessors[b])) {
Brian Salomon54d212e2017-03-21 14:22:38 -0400147 return false;
148 }
149 }
Brian Salomon48d1b4c2017-04-08 07:38:53 -0400150 // Most of the time both of these are null
151 if (!this->xferProcessor() && !that.xferProcessor()) {
152 return true;
Brian Salomon54d212e2017-03-21 14:22:38 -0400153 }
Brian Salomon48d1b4c2017-04-08 07:38:53 -0400154 const GrXferProcessor& thisXP = this->xferProcessor()
155 ? *this->xferProcessor()
156 : GrPorterDuffXPFactory::SimpleSrcOverXP();
157 const GrXferProcessor& thatXP = that.xferProcessor()
158 ? *that.xferProcessor()
159 : GrPorterDuffXPFactory::SimpleSrcOverXP();
160 return thisXP.isEqual(thatXP);
Brian Salomon54d212e2017-03-21 14:22:38 -0400161}
162
Chris Daltonb8fff0d2019-03-05 10:11:58 -0700163GrProcessorSet::Analysis GrProcessorSet::finalize(
164 const GrProcessorAnalysisColor& colorInput, const GrProcessorAnalysisCoverage coverageInput,
165 const GrAppliedClip* clip, const GrUserStencilSettings* userStencil, GrFSAAType fsaaType,
Brian Osman5ced0bf2019-03-15 10:15:29 -0400166 const GrCaps& caps, GrClampType clampType, SkPMColor4f* overrideInputColor) {
Brian Salomon48d1b4c2017-04-08 07:38:53 -0400167 SkASSERT(!this->isFinalized());
168 SkASSERT(!fFragmentProcessorOffset);
Brian Salomon5298dc82017-02-22 11:52:03 -0500169
Brian Salomon48d1b4c2017-04-08 07:38:53 -0400170 GrProcessorSet::Analysis analysis;
Brian Salomon48d1b4c2017-04-08 07:38:53 -0400171 analysis.fCompatibleWithCoverageAsAlpha = GrProcessorAnalysisCoverage::kLCD != coverageInput;
172
Brian Salomonaff329b2017-08-11 09:40:37 -0400173 const std::unique_ptr<const GrFragmentProcessor>* fps =
174 fFragmentProcessors.get() + fFragmentProcessorOffset;
175 GrColorFragmentProcessorAnalysis colorAnalysis(
176 colorInput, unique_ptr_address_as_pointer_address(fps), fColorFragmentProcessorCnt);
Brian Salomon48d1b4c2017-04-08 07:38:53 -0400177 analysis.fCompatibleWithCoverageAsAlpha &=
178 colorAnalysis.allProcessorsCompatibleWithCoverageAsAlpha();
179 fps += fColorFragmentProcessorCnt;
180 int n = this->numCoverageFragmentProcessors();
Brian Salomon5298dc82017-02-22 11:52:03 -0500181 bool hasCoverageFP = n > 0;
Brian Salomon31853842017-03-28 16:32:05 -0400182 bool coverageUsesLocalCoords = false;
Brian Salomonbfafcba2017-03-02 08:49:19 -0500183 for (int i = 0; i < n; ++i) {
Brian Salomon5298dc82017-02-22 11:52:03 -0500184 if (!fps[i]->compatibleWithCoverageAsAlpha()) {
Brian Salomon48d1b4c2017-04-08 07:38:53 -0400185 analysis.fCompatibleWithCoverageAsAlpha = false;
Brian Salomon5298dc82017-02-22 11:52:03 -0500186 }
Brian Salomon31853842017-03-28 16:32:05 -0400187 coverageUsesLocalCoords |= fps[i]->usesLocalCoords();
Brian Salomon5298dc82017-02-22 11:52:03 -0500188 }
Chris Dalton69824002017-10-31 00:37:52 -0600189 if (clip) {
190 hasCoverageFP = hasCoverageFP || clip->numClipCoverageFragmentProcessors();
191 for (int i = 0; i < clip->numClipCoverageFragmentProcessors(); ++i) {
192 const GrFragmentProcessor* clipFP = clip->clipCoverageFragmentProcessor(i);
193 analysis.fCompatibleWithCoverageAsAlpha &= clipFP->compatibleWithCoverageAsAlpha();
194 coverageUsesLocalCoords |= clipFP->usesLocalCoords();
195 }
Brian Salomon5298dc82017-02-22 11:52:03 -0500196 }
Brian Salomon48d1b4c2017-04-08 07:38:53 -0400197 int colorFPsToEliminate = colorAnalysis.initialProcessorsToEliminate(overrideInputColor);
198 analysis.fInputColorType = static_cast<Analysis::PackedInputColorType>(
199 colorFPsToEliminate ? Analysis::kOverridden_InputColorType
200 : Analysis::kOriginal_InputColorType);
Brian Salomon5298dc82017-02-22 11:52:03 -0500201
Brian Salomona811b122017-03-30 08:21:32 -0400202 GrProcessorAnalysisCoverage outputCoverage;
203 if (GrProcessorAnalysisCoverage::kLCD == coverageInput) {
204 outputCoverage = GrProcessorAnalysisCoverage::kLCD;
205 } else if (hasCoverageFP || GrProcessorAnalysisCoverage::kSingleChannel == coverageInput) {
206 outputCoverage = GrProcessorAnalysisCoverage::kSingleChannel;
Brian Salomon5298dc82017-02-22 11:52:03 -0500207 } else {
Brian Salomona811b122017-03-30 08:21:32 -0400208 outputCoverage = GrProcessorAnalysisCoverage::kNone;
Brian Salomon31853842017-03-28 16:32:05 -0400209 }
Brian Salomon31853842017-03-28 16:32:05 -0400210
211 GrXPFactory::AnalysisProperties props = GrXPFactory::GetAnalysisProperties(
Brian Osman5ced0bf2019-03-15 10:15:29 -0400212 this->xpFactory(), colorAnalysis.outputColor(), outputCoverage, caps, clampType);
Brian Salomon48d1b4c2017-04-08 07:38:53 -0400213 if (!this->numCoverageFragmentProcessors() &&
Brian Salomona811b122017-03-30 08:21:32 -0400214 GrProcessorAnalysisCoverage::kNone == coverageInput) {
Brian Salomon31853842017-03-28 16:32:05 -0400215 }
Brian Salomon48d1b4c2017-04-08 07:38:53 -0400216 analysis.fRequiresDstTexture =
217 SkToBool(props & GrXPFactory::AnalysisProperties::kRequiresDstTexture);
218 analysis.fCompatibleWithCoverageAsAlpha &=
Brian Salomon31853842017-03-28 16:32:05 -0400219 SkToBool(props & GrXPFactory::AnalysisProperties::kCompatibleWithAlphaAsCoverage);
Chris Dalton945ee652019-01-23 09:10:36 -0700220 analysis.fRequiresNonOverlappingDraws = SkToBool(
221 props & GrXPFactory::AnalysisProperties::kRequiresNonOverlappingDraws);
Brian Salomon31853842017-03-28 16:32:05 -0400222 if (props & GrXPFactory::AnalysisProperties::kIgnoresInputColor) {
Brian Salomon48d1b4c2017-04-08 07:38:53 -0400223 colorFPsToEliminate = this->numColorFragmentProcessors();
224 analysis.fInputColorType =
225 static_cast<Analysis::PackedInputColorType>(Analysis::kIgnored_InputColorType);
226 analysis.fUsesLocalCoords = coverageUsesLocalCoords;
Brian Salomon31853842017-03-28 16:32:05 -0400227 } else {
Brian Salomon48d1b4c2017-04-08 07:38:53 -0400228 analysis.fUsesLocalCoords = coverageUsesLocalCoords | colorAnalysis.usesLocalCoords();
Brian Salomon5298dc82017-02-22 11:52:03 -0500229 }
Brian Salomon48d1b4c2017-04-08 07:38:53 -0400230 for (int i = 0; i < colorFPsToEliminate; ++i) {
Brian Salomonaff329b2017-08-11 09:40:37 -0400231 fFragmentProcessors[i].reset(nullptr);
Brian Salomon5dac9b32017-04-08 02:53:30 +0000232 }
Brian Salomon48d1b4c2017-04-08 07:38:53 -0400233 for (int i = colorFPsToEliminate; i < fFragmentProcessors.count(); ++i) {
Brian Salomonaff329b2017-08-11 09:40:37 -0400234 fFragmentProcessors[i]->markPendingExecution();
Brian Salomon48d1b4c2017-04-08 07:38:53 -0400235 }
236 fFragmentProcessorOffset = colorFPsToEliminate;
237 fColorFragmentProcessorCnt -= colorFPsToEliminate;
238
Chris Daltonb8fff0d2019-03-05 10:11:58 -0700239 bool hasMixedSampledCoverage = (GrFSAAType::kMixedSamples == fsaaType)
240 && !userStencil->testAlwaysPasses((clip) ? clip->hasStencilClip() : false);
Brian Salomon48d1b4c2017-04-08 07:38:53 -0400241 auto xp = GrXPFactory::MakeXferProcessor(this->xpFactory(), colorAnalysis.outputColor(),
Brian Osman5ced0bf2019-03-15 10:15:29 -0400242 outputCoverage, hasMixedSampledCoverage, caps,
243 clampType);
Brian Salomond61c9d92017-04-10 10:54:25 -0400244 fXP.fProcessor = xp.release();
Brian Salomon48d1b4c2017-04-08 07:38:53 -0400245
Brian Salomond61c9d92017-04-10 10:54:25 -0400246 fFlags |= kFinalized_Flag;
Brian Salomon48d1b4c2017-04-08 07:38:53 -0400247 analysis.fIsInitialized = true;
Chris Dalton945ee652019-01-23 09:10:36 -0700248#ifdef SK_DEBUG
249 bool hasXferBarrier =
250 fXP.fProcessor &&
251 GrXferBarrierType::kNone_GrXferBarrierType != fXP.fProcessor->xferBarrierType(caps);
252 bool needsNonOverlappingDraws = analysis.fRequiresDstTexture || hasXferBarrier;
253 SkASSERT(analysis.fRequiresNonOverlappingDraws == needsNonOverlappingDraws);
254#endif
Brian Salomon48d1b4c2017-04-08 07:38:53 -0400255 return analysis;
Brian Salomon70288c02017-03-24 12:27:17 -0400256}