blob: 2323c67040f9e8052251b6e7c3ca1e8216a8db24 [file] [log] [blame]
egdaniel378092f2014-12-03 10:40:13 -08001/*
2 * Copyright 2014 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
egdanielced90102014-12-05 12:40:52 -08008#include "effects/GrPorterDuffXferProcessor.h"
egdaniel378092f2014-12-03 10:40:13 -08009
egdaniel95131432014-12-09 11:15:43 -080010#include "GrBlend.h"
bsalomoneb1cb5c2015-05-22 08:01:09 -070011#include "GrCaps.h"
egdaniel378092f2014-12-03 10:40:13 -080012#include "GrProcessor.h"
egdaniel87509242014-12-17 13:37:13 -080013#include "GrProcOptInfo.h"
egdaniel378092f2014-12-03 10:40:13 -080014#include "GrTypes.h"
15#include "GrXferProcessor.h"
egdaniel64c47282015-11-13 06:54:19 -080016#include "glsl/GrGLSLBlend.h"
egdaniel2d721d32015-11-11 13:06:05 -080017#include "glsl/GrGLSLFragmentShaderBuilder.h"
18#include "glsl/GrGLSLProgramBuilder.h"
egdaniel018fb622015-10-28 07:26:40 -070019#include "glsl/GrGLSLProgramDataManager.h"
egdanielfa4cc8b2015-11-13 08:34:52 -080020#include "glsl/GrGLSLXferProcessor.h"
egdaniel378092f2014-12-03 10:40:13 -080021
cdalton6fd158e2015-05-27 15:08:33 -070022/**
23 * Wraps the shader outputs and HW blend state that comprise a Porter Duff blend mode with coverage.
24 */
25struct BlendFormula {
26public:
27 /**
28 * Values the shader can write to primary and secondary outputs. These must all be modulated by
29 * coverage to support mixed samples. The XP will ignore the multiplies when not using coverage.
egdaniel95131432014-12-09 11:15:43 -080030 */
cdalton6fd158e2015-05-27 15:08:33 -070031 enum OutputType {
32 kNone_OutputType, //<! 0
33 kCoverage_OutputType, //<! inputCoverage
34 kModulate_OutputType, //<! inputColor * inputCoverage
egdaniel723b0502015-09-15 09:31:40 -070035 kSAModulate_OutputType, //<! inputColor.a * inputCoverage
cdalton6fd158e2015-05-27 15:08:33 -070036 kISAModulate_OutputType, //<! (1 - inputColor.a) * inputCoverage
37 kISCModulate_OutputType, //<! (1 - inputColor) * inputCoverage
38
39 kLast_OutputType = kISCModulate_OutputType
40 };
41
42 enum Properties {
43 kModifiesDst_Property = 1,
44 kUsesDstColor_Property = 1 << 1,
45 kUsesInputColor_Property = 1 << 2,
46 kCanTweakAlphaForCoverage_Property = 1 << 3,
47
48 kLast_Property = kCanTweakAlphaForCoverage_Property
49 };
50
51 BlendFormula& operator =(const BlendFormula& other) {
52 fData = other.fData;
53 return *this;
54 }
55
56 bool operator ==(const BlendFormula& other) const {
57 return fData == other.fData;
58 }
59
60 bool hasSecondaryOutput() const { return kNone_OutputType != fSecondaryOutputType; }
61 bool modifiesDst() const { return SkToBool(fProps & kModifiesDst_Property); }
62 bool usesDstColor() const { return SkToBool(fProps & kUsesDstColor_Property); }
63 bool usesInputColor() const { return SkToBool(fProps & kUsesInputColor_Property); }
64 bool canTweakAlphaForCoverage() const {
65 return SkToBool(fProps & kCanTweakAlphaForCoverage_Property);
66 }
67
68 /**
69 * Deduce the properties of a compile-time constant BlendFormula.
70 */
71 template<OutputType PrimaryOut, OutputType SecondaryOut,
72 GrBlendEquation BlendEquation, GrBlendCoeff SrcCoeff, GrBlendCoeff DstCoeff>
bungeman761cf612015-08-28 07:09:20 -070073 struct get_properties : skstd::integral_constant<Properties, static_cast<Properties>(
cdalton6fd158e2015-05-27 15:08:33 -070074
75 (GR_BLEND_MODIFIES_DST(BlendEquation, SrcCoeff, DstCoeff) ?
76 kModifiesDst_Property : 0) |
77
78 (GR_BLEND_COEFFS_USE_DST_COLOR(SrcCoeff, DstCoeff) ?
79 kUsesDstColor_Property : 0) |
80
81 ((PrimaryOut >= kModulate_OutputType && GR_BLEND_COEFFS_USE_SRC_COLOR(SrcCoeff,DstCoeff)) ||
82 (SecondaryOut >= kModulate_OutputType && GR_BLEND_COEFF_REFS_SRC2(DstCoeff)) ?
83 kUsesInputColor_Property : 0) | // We assert later that SrcCoeff doesn't ref src2.
84
85 (kModulate_OutputType == PrimaryOut &&
86 kNone_OutputType == SecondaryOut &&
87 GR_BLEND_CAN_TWEAK_ALPHA_FOR_COVERAGE(BlendEquation, SrcCoeff, DstCoeff) ?
88 kCanTweakAlphaForCoverage_Property : 0))> {
89
90 // The provided formula should already be optimized.
91 GR_STATIC_ASSERT((kNone_OutputType == PrimaryOut) ==
92 !GR_BLEND_COEFFS_USE_SRC_COLOR(SrcCoeff, DstCoeff));
93 GR_STATIC_ASSERT(!GR_BLEND_COEFF_REFS_SRC2(SrcCoeff));
94 GR_STATIC_ASSERT((kNone_OutputType == SecondaryOut) ==
95 !GR_BLEND_COEFF_REFS_SRC2(DstCoeff));
96 GR_STATIC_ASSERT(PrimaryOut != SecondaryOut || kNone_OutputType == PrimaryOut);
97 GR_STATIC_ASSERT(kNone_OutputType != PrimaryOut || kNone_OutputType == SecondaryOut);
98 };
99
100 union {
101 struct {
102 // We allot the enums one more bit than they require because MSVC seems to sign-extend
103 // them when the top bit is set. (This is in violation of the C++03 standard 9.6/4)
104 OutputType fPrimaryOutputType : 4;
105 OutputType fSecondaryOutputType : 4;
106 GrBlendEquation fBlendEquation : 6;
107 GrBlendCoeff fSrcCoeff : 6;
108 GrBlendCoeff fDstCoeff : 6;
109 Properties fProps : 32 - (4 + 4 + 6 + 6 + 6);
110 };
111 uint32_t fData;
112 };
113
114 GR_STATIC_ASSERT(kLast_OutputType < (1 << 3));
115 GR_STATIC_ASSERT(kLast_GrBlendEquation < (1 << 5));
116 GR_STATIC_ASSERT(kLast_GrBlendCoeff < (1 << 5));
117 GR_STATIC_ASSERT(kLast_Property < (1 << 6));
118};
119
120GR_STATIC_ASSERT(4 == sizeof(BlendFormula));
121
122GR_MAKE_BITFIELD_OPS(BlendFormula::Properties);
123
124/**
125 * Initialize a compile-time constant BlendFormula and automatically deduce fProps.
126 */
127#define INIT_BLEND_FORMULA(PRIMARY_OUT, SECONDARY_OUT, BLEND_EQUATION, SRC_COEFF, DST_COEFF) \
128 {{{PRIMARY_OUT, \
129 SECONDARY_OUT, \
130 BLEND_EQUATION, SRC_COEFF, DST_COEFF, \
131 BlendFormula::get_properties<PRIMARY_OUT, SECONDARY_OUT, \
132 BLEND_EQUATION, SRC_COEFF, DST_COEFF>::value}}}
133
134/**
135 * When there is no coverage, or the blend mode can tweak alpha for coverage, we use the standard
136 * Porter Duff formula.
137 */
138#define COEFF_FORMULA(SRC_COEFF, DST_COEFF) \
139 INIT_BLEND_FORMULA(BlendFormula::kModulate_OutputType, \
140 BlendFormula::kNone_OutputType, \
141 kAdd_GrBlendEquation, SRC_COEFF, DST_COEFF)
142
143/**
egdaniel723b0502015-09-15 09:31:40 -0700144 * Basic coeff formula similar to COEFF_FORMULA but we will make the src f*Sa. This is used in
145 * LCD dst-out.
146 */
147#define COEFF_FORMULA_SA_MODULATE(SRC_COEFF, DST_COEFF) \
148 INIT_BLEND_FORMULA(BlendFormula::kSAModulate_OutputType, \
149 BlendFormula::kNone_OutputType, \
150 kAdd_GrBlendEquation, SRC_COEFF, DST_COEFF)
151
152/**
cdalton6fd158e2015-05-27 15:08:33 -0700153 * When the coeffs are (Zero, Zero), we clear the dst. This formula has its own macro so we can set
154 * the primary output type to none.
155 */
156#define DST_CLEAR_FORMULA \
157 INIT_BLEND_FORMULA(BlendFormula::kNone_OutputType, \
158 BlendFormula::kNone_OutputType, \
159 kAdd_GrBlendEquation, kZero_GrBlendCoeff, kZero_GrBlendCoeff)
160
161/**
162 * When the coeffs are (Zero, One), we don't write to the dst at all. This formula has its own macro
163 * so we can set the primary output type to none.
164 */
165#define NO_DST_WRITE_FORMULA \
166 INIT_BLEND_FORMULA(BlendFormula::kNone_OutputType, \
167 BlendFormula::kNone_OutputType, \
168 kAdd_GrBlendEquation, kZero_GrBlendCoeff, kOne_GrBlendCoeff)
169
170/**
171 * When there is coverage, the equation with f=coverage is:
172 *
173 * D' = f * (S * srcCoeff + D * dstCoeff) + (1-f) * D
174 *
175 * This can be rewritten as:
176 *
177 * D' = f * S * srcCoeff + D * (1 - [f * (1 - dstCoeff)])
178 *
179 * To implement this formula, we output [f * (1 - dstCoeff)] for the secondary color and replace the
180 * HW dst coeff with IS2C.
181 *
182 * Xfer modes: dst-atop (Sa!=1)
183 */
184#define COVERAGE_FORMULA(ONE_MINUS_DST_COEFF_MODULATE_OUTPUT, SRC_COEFF) \
185 INIT_BLEND_FORMULA(BlendFormula::kModulate_OutputType, \
186 ONE_MINUS_DST_COEFF_MODULATE_OUTPUT, \
187 kAdd_GrBlendEquation, SRC_COEFF, kIS2C_GrBlendCoeff)
188
189/**
190 * When there is coverage and the src coeff is Zero, the equation with f=coverage becomes:
191 *
192 * D' = f * D * dstCoeff + (1-f) * D
193 *
194 * This can be rewritten as:
195 *
196 * D' = D - D * [f * (1 - dstCoeff)]
197 *
198 * To implement this formula, we output [f * (1 - dstCoeff)] for the primary color and use a reverse
199 * subtract HW blend equation with coeffs of (DC, One).
200 *
201 * Xfer modes: clear, dst-out (Sa=1), dst-in (Sa!=1), modulate (Sc!=1)
202 */
203#define COVERAGE_SRC_COEFF_ZERO_FORMULA(ONE_MINUS_DST_COEFF_MODULATE_OUTPUT) \
204 INIT_BLEND_FORMULA(ONE_MINUS_DST_COEFF_MODULATE_OUTPUT, \
205 BlendFormula::kNone_OutputType, \
206 kReverseSubtract_GrBlendEquation, kDC_GrBlendCoeff, kOne_GrBlendCoeff)
207
208/**
209 * When there is coverage and the dst coeff is Zero, the equation with f=coverage becomes:
210 *
211 * D' = f * S * srcCoeff + (1-f) * D
212 *
213 * To implement this formula, we output [f] for the secondary color and replace the HW dst coeff
214 * with IS2A. (Note that we can avoid dual source blending when Sa=1 by using ISA.)
215 *
216 * Xfer modes (Sa!=1): src, src-in, src-out
217 */
218#define COVERAGE_DST_COEFF_ZERO_FORMULA(SRC_COEFF) \
219 INIT_BLEND_FORMULA(BlendFormula::kModulate_OutputType, \
220 BlendFormula::kCoverage_OutputType, \
221 kAdd_GrBlendEquation, SRC_COEFF, kIS2A_GrBlendCoeff)
222
223/**
224 * This table outlines the blend formulas we will use with each xfermode, with and without coverage,
225 * with and without an opaque input color. Optimization properties are deduced at compile time so we
226 * can make runtime decisions quickly. RGB coverage is not supported.
227 */
228static const BlendFormula gBlendTable[2][2][SkXfermode::kLastCoeffMode + 1] = {
229
230 /*>> No coverage, input color unknown <<*/ {{
231
232 /* clear */ DST_CLEAR_FORMULA,
233 /* src */ COEFF_FORMULA( kOne_GrBlendCoeff, kZero_GrBlendCoeff),
234 /* dst */ NO_DST_WRITE_FORMULA,
235 /* src-over */ COEFF_FORMULA( kOne_GrBlendCoeff, kISA_GrBlendCoeff),
236 /* dst-over */ COEFF_FORMULA( kIDA_GrBlendCoeff, kOne_GrBlendCoeff),
237 /* src-in */ COEFF_FORMULA( kDA_GrBlendCoeff, kZero_GrBlendCoeff),
238 /* dst-in */ COEFF_FORMULA( kZero_GrBlendCoeff, kSA_GrBlendCoeff),
239 /* src-out */ COEFF_FORMULA( kIDA_GrBlendCoeff, kZero_GrBlendCoeff),
240 /* dst-out */ COEFF_FORMULA( kZero_GrBlendCoeff, kISA_GrBlendCoeff),
241 /* src-atop */ COEFF_FORMULA( kDA_GrBlendCoeff, kISA_GrBlendCoeff),
242 /* dst-atop */ COEFF_FORMULA( kIDA_GrBlendCoeff, kSA_GrBlendCoeff),
243 /* xor */ COEFF_FORMULA( kIDA_GrBlendCoeff, kISA_GrBlendCoeff),
244 /* plus */ COEFF_FORMULA( kOne_GrBlendCoeff, kOne_GrBlendCoeff),
245 /* modulate */ COEFF_FORMULA( kZero_GrBlendCoeff, kSC_GrBlendCoeff),
246 /* screen */ COEFF_FORMULA( kOne_GrBlendCoeff, kISC_GrBlendCoeff),
247
248 }, /*>> Has coverage, input color unknown <<*/ {
249
250 /* clear */ COVERAGE_SRC_COEFF_ZERO_FORMULA(BlendFormula::kCoverage_OutputType),
251 /* src */ COVERAGE_DST_COEFF_ZERO_FORMULA(kOne_GrBlendCoeff),
252 /* dst */ NO_DST_WRITE_FORMULA,
253 /* src-over */ COEFF_FORMULA( kOne_GrBlendCoeff, kISA_GrBlendCoeff),
254 /* dst-over */ COEFF_FORMULA( kIDA_GrBlendCoeff, kOne_GrBlendCoeff),
255 /* src-in */ COVERAGE_DST_COEFF_ZERO_FORMULA(kDA_GrBlendCoeff),
256 /* dst-in */ COVERAGE_SRC_COEFF_ZERO_FORMULA(BlendFormula::kISAModulate_OutputType),
257 /* src-out */ COVERAGE_DST_COEFF_ZERO_FORMULA(kIDA_GrBlendCoeff),
258 /* dst-out */ COEFF_FORMULA( kZero_GrBlendCoeff, kISA_GrBlendCoeff),
259 /* src-atop */ COEFF_FORMULA( kDA_GrBlendCoeff, kISA_GrBlendCoeff),
260 /* dst-atop */ COVERAGE_FORMULA(BlendFormula::kISAModulate_OutputType, kIDA_GrBlendCoeff),
261 /* xor */ COEFF_FORMULA( kIDA_GrBlendCoeff, kISA_GrBlendCoeff),
262 /* plus */ COEFF_FORMULA( kOne_GrBlendCoeff, kOne_GrBlendCoeff),
263 /* modulate */ COVERAGE_SRC_COEFF_ZERO_FORMULA(BlendFormula::kISCModulate_OutputType),
264 /* screen */ COEFF_FORMULA( kOne_GrBlendCoeff, kISC_GrBlendCoeff),
265
266 }}, /*>> No coverage, input color opaque <<*/ {{
267
268 /* clear */ DST_CLEAR_FORMULA,
269 /* src */ COEFF_FORMULA( kOne_GrBlendCoeff, kZero_GrBlendCoeff),
270 /* dst */ NO_DST_WRITE_FORMULA,
271 /* src-over */ COEFF_FORMULA( kOne_GrBlendCoeff, kZero_GrBlendCoeff),
272 /* dst-over */ COEFF_FORMULA( kIDA_GrBlendCoeff, kOne_GrBlendCoeff),
273 /* src-in */ COEFF_FORMULA( kDA_GrBlendCoeff, kZero_GrBlendCoeff),
274 /* dst-in */ NO_DST_WRITE_FORMULA,
275 /* src-out */ COEFF_FORMULA( kIDA_GrBlendCoeff, kZero_GrBlendCoeff),
276 /* dst-out */ DST_CLEAR_FORMULA,
277 /* src-atop */ COEFF_FORMULA( kDA_GrBlendCoeff, kZero_GrBlendCoeff),
278 /* dst-atop */ COEFF_FORMULA( kIDA_GrBlendCoeff, kOne_GrBlendCoeff),
279 /* xor */ COEFF_FORMULA( kIDA_GrBlendCoeff, kZero_GrBlendCoeff),
280 /* plus */ COEFF_FORMULA( kOne_GrBlendCoeff, kOne_GrBlendCoeff),
281 /* modulate */ COEFF_FORMULA( kZero_GrBlendCoeff, kSC_GrBlendCoeff),
282 /* screen */ COEFF_FORMULA( kOne_GrBlendCoeff, kISC_GrBlendCoeff),
283
284 }, /*>> Has coverage, input color opaque <<*/ {
285
286 /* clear */ COVERAGE_SRC_COEFF_ZERO_FORMULA(BlendFormula::kCoverage_OutputType),
287 /* src */ COEFF_FORMULA( kOne_GrBlendCoeff, kISA_GrBlendCoeff),
288 /* dst */ NO_DST_WRITE_FORMULA,
289 /* src-over */ COEFF_FORMULA( kOne_GrBlendCoeff, kISA_GrBlendCoeff),
290 /* dst-over */ COEFF_FORMULA( kIDA_GrBlendCoeff, kOne_GrBlendCoeff),
291 /* src-in */ COEFF_FORMULA( kDA_GrBlendCoeff, kISA_GrBlendCoeff),
292 /* dst-in */ NO_DST_WRITE_FORMULA,
293 /* src-out */ COEFF_FORMULA( kIDA_GrBlendCoeff, kISA_GrBlendCoeff),
294 /* dst-out */ COVERAGE_SRC_COEFF_ZERO_FORMULA(BlendFormula::kCoverage_OutputType),
295 /* src-atop */ COEFF_FORMULA( kDA_GrBlendCoeff, kISA_GrBlendCoeff),
296 /* dst-atop */ COEFF_FORMULA( kIDA_GrBlendCoeff, kOne_GrBlendCoeff),
297 /* xor */ COEFF_FORMULA( kIDA_GrBlendCoeff, kISA_GrBlendCoeff),
298 /* plus */ COEFF_FORMULA( kOne_GrBlendCoeff, kOne_GrBlendCoeff),
299 /* modulate */ COVERAGE_SRC_COEFF_ZERO_FORMULA(BlendFormula::kISCModulate_OutputType),
300 /* screen */ COEFF_FORMULA( kOne_GrBlendCoeff, kISC_GrBlendCoeff),
301}}};
302
egdaniel723b0502015-09-15 09:31:40 -0700303static const BlendFormula gLCDBlendTable[SkXfermode::kLastCoeffMode + 1] = {
304 /* clear */ COVERAGE_SRC_COEFF_ZERO_FORMULA(BlendFormula::kCoverage_OutputType),
305 /* src */ COVERAGE_FORMULA(BlendFormula::kCoverage_OutputType, kOne_GrBlendCoeff),
306 /* dst */ NO_DST_WRITE_FORMULA,
307 /* src-over */ COVERAGE_FORMULA(BlendFormula::kSAModulate_OutputType, kOne_GrBlendCoeff),
308 /* dst-over */ COEFF_FORMULA( kIDA_GrBlendCoeff, kOne_GrBlendCoeff),
309 /* src-in */ COVERAGE_FORMULA(BlendFormula::kCoverage_OutputType, kDA_GrBlendCoeff),
310 /* dst-in */ COVERAGE_SRC_COEFF_ZERO_FORMULA(BlendFormula::kISAModulate_OutputType),
311 /* src-out */ COVERAGE_FORMULA(BlendFormula::kCoverage_OutputType, kIDA_GrBlendCoeff),
312 /* dst-out */ COEFF_FORMULA_SA_MODULATE( kZero_GrBlendCoeff, kISC_GrBlendCoeff),
313 /* src-atop */ COVERAGE_FORMULA(BlendFormula::kSAModulate_OutputType, kDA_GrBlendCoeff),
314 /* dst-atop */ COVERAGE_FORMULA(BlendFormula::kISAModulate_OutputType, kIDA_GrBlendCoeff),
315 /* xor */ COVERAGE_FORMULA(BlendFormula::kSAModulate_OutputType, kIDA_GrBlendCoeff),
316 /* plus */ COEFF_FORMULA( kOne_GrBlendCoeff, kOne_GrBlendCoeff),
317 /* modulate */ COVERAGE_SRC_COEFF_ZERO_FORMULA(BlendFormula::kISCModulate_OutputType),
318 /* screen */ COEFF_FORMULA( kOne_GrBlendCoeff, kISC_GrBlendCoeff),
319};
320
cdalton86ae0a92015-06-08 15:11:04 -0700321static BlendFormula get_blend_formula(const GrProcOptInfo& colorPOI,
322 const GrProcOptInfo& coveragePOI,
323 bool hasMixedSamples,
324 SkXfermode::Mode xfermode) {
cdalton6fd158e2015-05-27 15:08:33 -0700325 SkASSERT(xfermode >= 0 && xfermode <= SkXfermode::kLastCoeffMode);
326 SkASSERT(!coveragePOI.isFourChannelOutput());
327
cdalton86ae0a92015-06-08 15:11:04 -0700328 bool conflatesCoverage = !coveragePOI.isSolidWhite() || hasMixedSamples;
329 return gBlendTable[colorPOI.isOpaque()][conflatesCoverage][xfermode];
egdaniel95131432014-12-09 11:15:43 -0800330}
331
egdaniel723b0502015-09-15 09:31:40 -0700332static BlendFormula get_lcd_blend_formula(const GrProcOptInfo& coveragePOI,
333 SkXfermode::Mode xfermode) {
334 SkASSERT(xfermode >= 0 && xfermode <= SkXfermode::kLastCoeffMode);
335 SkASSERT(coveragePOI.isFourChannelOutput());
336
337 return gLCDBlendTable[xfermode];
338}
339
cdalton6fd158e2015-05-27 15:08:33 -0700340///////////////////////////////////////////////////////////////////////////////
341
egdaniel41d4f092015-02-09 07:51:00 -0800342class PorterDuffXferProcessor : public GrXferProcessor {
egdaniel378092f2014-12-03 10:40:13 -0800343public:
cdalton86ae0a92015-06-08 15:11:04 -0700344 PorterDuffXferProcessor(BlendFormula blendFormula) : fBlendFormula(blendFormula) {
345 this->initClassID<PorterDuffXferProcessor>();
egdaniel41d4f092015-02-09 07:51:00 -0800346 }
egdaniel378092f2014-12-03 10:40:13 -0800347
mtklein36352bf2015-03-25 18:17:31 -0700348 const char* name() const override { return "Porter Duff"; }
egdaniel41d4f092015-02-09 07:51:00 -0800349
egdaniel57d3b032015-11-13 11:57:27 -0800350 GrGLSLXferProcessor* createGLSLInstance() const override;
egdaniel41d4f092015-02-09 07:51:00 -0800351
cdalton6fd158e2015-05-27 15:08:33 -0700352 BlendFormula getBlendFormula() const { return fBlendFormula; }
cdaltonf4f2b442015-04-23 09:40:23 -0700353
354private:
egdanielc19cdc22015-05-10 08:45:18 -0700355 GrXferProcessor::OptFlags onGetOptimizations(const GrProcOptInfo& colorPOI,
356 const GrProcOptInfo& coveragePOI,
357 bool doesStencilWrite,
358 GrColor* overrideColor,
bsalomon4b91f762015-05-19 09:29:46 -0700359 const GrCaps& caps) override;
egdanielc19cdc22015-05-10 08:45:18 -0700360
egdaniel57d3b032015-11-13 11:57:27 -0800361 void onGetGLSLProcessorKey(const GrGLSLCaps& caps, GrProcessorKeyBuilder* b) const override;
cdaltonf4f2b442015-04-23 09:40:23 -0700362
cdaltonedbb31f2015-06-08 12:14:44 -0700363 bool onHasSecondaryOutput() const override { return fBlendFormula.hasSecondaryOutput(); }
364
cdaltonf4f2b442015-04-23 09:40:23 -0700365 void onGetBlendInfo(GrXferProcessor::BlendInfo* blendInfo) const override {
cdalton6fd158e2015-05-27 15:08:33 -0700366 blendInfo->fEquation = fBlendFormula.fBlendEquation;
367 blendInfo->fSrcBlend = fBlendFormula.fSrcCoeff;
368 blendInfo->fDstBlend = fBlendFormula.fDstCoeff;
369 blendInfo->fWriteColor = fBlendFormula.modifiesDst();
egdaniel41d4f092015-02-09 07:51:00 -0800370 }
371
mtklein36352bf2015-03-25 18:17:31 -0700372 bool onIsEqual(const GrXferProcessor& xpBase) const override {
egdaniel41d4f092015-02-09 07:51:00 -0800373 const PorterDuffXferProcessor& xp = xpBase.cast<PorterDuffXferProcessor>();
cdalton6fd158e2015-05-27 15:08:33 -0700374 return fBlendFormula == xp.fBlendFormula;
egdaniel41d4f092015-02-09 07:51:00 -0800375 }
376
cdalton6fd158e2015-05-27 15:08:33 -0700377 const BlendFormula fBlendFormula;
egdaniel41d4f092015-02-09 07:51:00 -0800378
379 typedef GrXferProcessor INHERITED;
380};
381
382///////////////////////////////////////////////////////////////////////////////
383
egdaniel2d721d32015-11-11 13:06:05 -0800384static void append_color_output(const PorterDuffXferProcessor& xp,
egdaniel4ca2e602015-11-18 08:01:26 -0800385 GrGLSLXPFragmentBuilder* fragBuilder,
cdalton6fd158e2015-05-27 15:08:33 -0700386 BlendFormula::OutputType outputType, const char* output,
387 const char* inColor, const char* inCoverage) {
388 switch (outputType) {
389 case BlendFormula::kNone_OutputType:
egdaniel4ca2e602015-11-18 08:01:26 -0800390 fragBuilder->codeAppendf("%s = vec4(0.0);", output);
cdalton6fd158e2015-05-27 15:08:33 -0700391 break;
392 case BlendFormula::kCoverage_OutputType:
cdalton86ae0a92015-06-08 15:11:04 -0700393 // We can have a coverage formula while not reading coverage if there are mixed samples.
egdaniel4ca2e602015-11-18 08:01:26 -0800394 fragBuilder->codeAppendf("%s = %s;",
cdalton6fd158e2015-05-27 15:08:33 -0700395 output, xp.readsCoverage() ? inCoverage : "vec4(1.0)");
396 break;
397 case BlendFormula::kModulate_OutputType:
398 if (xp.readsCoverage()) {
egdaniel4ca2e602015-11-18 08:01:26 -0800399 fragBuilder->codeAppendf("%s = %s * %s;", output, inColor, inCoverage);
cdalton6fd158e2015-05-27 15:08:33 -0700400 } else {
egdaniel4ca2e602015-11-18 08:01:26 -0800401 fragBuilder->codeAppendf("%s = %s;", output, inColor);
cdalton6fd158e2015-05-27 15:08:33 -0700402 }
403 break;
egdaniel723b0502015-09-15 09:31:40 -0700404 case BlendFormula::kSAModulate_OutputType:
405 if (xp.readsCoverage()) {
egdaniel4ca2e602015-11-18 08:01:26 -0800406 fragBuilder->codeAppendf("%s = %s.a * %s;", output, inColor, inCoverage);
egdaniel723b0502015-09-15 09:31:40 -0700407 } else {
egdaniel4ca2e602015-11-18 08:01:26 -0800408 fragBuilder->codeAppendf("%s = %s;", output, inColor);
egdaniel723b0502015-09-15 09:31:40 -0700409 }
410 break;
cdalton6fd158e2015-05-27 15:08:33 -0700411 case BlendFormula::kISAModulate_OutputType:
412 if (xp.readsCoverage()) {
egdaniel4ca2e602015-11-18 08:01:26 -0800413 fragBuilder->codeAppendf("%s = (1.0 - %s.a) * %s;", output, inColor, inCoverage);
cdalton6fd158e2015-05-27 15:08:33 -0700414 } else {
egdaniel4ca2e602015-11-18 08:01:26 -0800415 fragBuilder->codeAppendf("%s = vec4(1.0 - %s.a);", output, inColor);
cdalton6fd158e2015-05-27 15:08:33 -0700416 }
417 break;
418 case BlendFormula::kISCModulate_OutputType:
419 if (xp.readsCoverage()) {
egdaniel4ca2e602015-11-18 08:01:26 -0800420 fragBuilder->codeAppendf("%s = (vec4(1.0) - %s) * %s;", output, inColor, inCoverage);
cdalton6fd158e2015-05-27 15:08:33 -0700421 } else {
egdaniel4ca2e602015-11-18 08:01:26 -0800422 fragBuilder->codeAppendf("%s = vec4(1.0) - %s;", output, inColor);
cdalton6fd158e2015-05-27 15:08:33 -0700423 }
424 break;
425 default:
426 SkFAIL("Unsupported output type.");
427 break;
egdaniel3ad65702015-02-17 11:15:47 -0800428 }
429}
430
egdanielfa4cc8b2015-11-13 08:34:52 -0800431class GLPorterDuffXferProcessor : public GrGLSLXferProcessor {
egdaniel41d4f092015-02-09 07:51:00 -0800432public:
cdalton6fd158e2015-05-27 15:08:33 -0700433 static void GenKey(const GrProcessor& processor, GrProcessorKeyBuilder* b) {
egdaniel41d4f092015-02-09 07:51:00 -0800434 const PorterDuffXferProcessor& xp = processor.cast<PorterDuffXferProcessor>();
cdalton6fd158e2015-05-27 15:08:33 -0700435 b->add32(SkToInt(xp.readsCoverage()) |
436 (xp.getBlendFormula().fPrimaryOutputType << 1) |
437 (xp.getBlendFormula().fSecondaryOutputType << 4));
438 GR_STATIC_ASSERT(BlendFormula::kLast_OutputType < 8);
bsalomon50785a32015-02-06 07:02:37 -0800439 };
440
441private:
cdaltonedbb31f2015-06-08 12:14:44 -0700442 void emitOutputsForBlendState(const EmitArgs& args) override {
egdaniel41d4f092015-02-09 07:51:00 -0800443 const PorterDuffXferProcessor& xp = args.fXP.cast<PorterDuffXferProcessor>();
egdaniel4ca2e602015-11-18 08:01:26 -0800444 GrGLSLXPFragmentBuilder* fragBuilder = args.fXPFragBuilder;
bungemanc33db932015-05-22 17:55:26 -0700445
cdalton6fd158e2015-05-27 15:08:33 -0700446 BlendFormula blendFormula = xp.getBlendFormula();
447 if (blendFormula.hasSecondaryOutput()) {
egdaniel4ca2e602015-11-18 08:01:26 -0800448 append_color_output(xp, fragBuilder, blendFormula.fSecondaryOutputType,
cdalton6fd158e2015-05-27 15:08:33 -0700449 args.fOutputSecondary, args.fInputColor, args.fInputCoverage);
egdanielc2304142014-12-11 13:15:13 -0800450 }
egdaniel4ca2e602015-11-18 08:01:26 -0800451 append_color_output(xp, fragBuilder, blendFormula.fPrimaryOutputType,
cdalton6fd158e2015-05-27 15:08:33 -0700452 args.fOutputPrimary, args.fInputColor, args.fInputCoverage);
egdaniel378092f2014-12-03 10:40:13 -0800453 }
454
egdaniel018fb622015-10-28 07:26:40 -0700455 void onSetData(const GrGLSLProgramDataManager&, const GrXferProcessor&) override {}
egdaniel378092f2014-12-03 10:40:13 -0800456
egdanielfa4cc8b2015-11-13 08:34:52 -0800457 typedef GrGLSLXferProcessor INHERITED;
egdaniel378092f2014-12-03 10:40:13 -0800458};
459
460///////////////////////////////////////////////////////////////////////////////
461
egdaniel57d3b032015-11-13 11:57:27 -0800462void PorterDuffXferProcessor::onGetGLSLProcessorKey(const GrGLSLCaps&,
463 GrProcessorKeyBuilder* b) const {
cdalton6fd158e2015-05-27 15:08:33 -0700464 GLPorterDuffXferProcessor::GenKey(*this, b);
joshualitteb2a6762014-12-04 11:35:33 -0800465}
466
egdaniel57d3b032015-11-13 11:57:27 -0800467GrGLSLXferProcessor* PorterDuffXferProcessor::createGLSLInstance() const {
halcanary385fe4d2015-08-26 13:07:48 -0700468 return new GLPorterDuffXferProcessor;
egdaniel378092f2014-12-03 10:40:13 -0800469}
470
egdaniel95131432014-12-09 11:15:43 -0800471GrXferProcessor::OptFlags
egdanielc19cdc22015-05-10 08:45:18 -0700472PorterDuffXferProcessor::onGetOptimizations(const GrProcOptInfo& colorPOI,
473 const GrProcOptInfo& coveragePOI,
474 bool doesStencilWrite,
475 GrColor* overrideColor,
bsalomon4b91f762015-05-19 09:29:46 -0700476 const GrCaps& caps) {
bsalomon7765a472015-07-08 11:26:37 -0700477 GrXferProcessor::OptFlags optFlags = GrXferProcessor::kNone_OptFlags;
cdalton6fd158e2015-05-27 15:08:33 -0700478 if (!fBlendFormula.modifiesDst()) {
479 if (!doesStencilWrite) {
480 optFlags |= GrXferProcessor::kSkipDraw_OptFlag;
481 }
482 optFlags |= (GrXferProcessor::kIgnoreColor_OptFlag |
483 GrXferProcessor::kIgnoreCoverage_OptFlag |
484 GrXferProcessor::kCanTweakAlphaForCoverage_OptFlag);
485 } else {
486 if (!fBlendFormula.usesInputColor()) {
487 optFlags |= GrXferProcessor::kIgnoreColor_OptFlag;
488 }
489 if (coveragePOI.isSolidWhite()) {
490 optFlags |= GrXferProcessor::kIgnoreCoverage_OptFlag;
491 }
egdaniel723b0502015-09-15 09:31:40 -0700492 if (colorPOI.allStagesMultiplyInput() &&
493 fBlendFormula.canTweakAlphaForCoverage() &&
494 !coveragePOI.isFourChannelOutput()) {
cdalton6fd158e2015-05-27 15:08:33 -0700495 optFlags |= GrXferProcessor::kCanTweakAlphaForCoverage_OptFlag;
496 }
497 }
bungemanc33db932015-05-22 17:55:26 -0700498 return optFlags;
499}
500
cdalton6fd158e2015-05-27 15:08:33 -0700501///////////////////////////////////////////////////////////////////////////////
502
503class ShaderPDXferProcessor : public GrXferProcessor {
504public:
cdalton86ae0a92015-06-08 15:11:04 -0700505 ShaderPDXferProcessor(const DstTexture* dstTexture,
506 bool hasMixedSamples,
507 SkXfermode::Mode xfermode)
508 : INHERITED(dstTexture, true, hasMixedSamples)
509 , fXfermode(xfermode) {
510 this->initClassID<ShaderPDXferProcessor>();
bungemanc33db932015-05-22 17:55:26 -0700511 }
512
cdalton6fd158e2015-05-27 15:08:33 -0700513 const char* name() const override { return "Porter Duff Shader"; }
cdalton6fd158e2015-05-27 15:08:33 -0700514
egdaniel57d3b032015-11-13 11:57:27 -0800515 GrGLSLXferProcessor* createGLSLInstance() const override;
cdalton6fd158e2015-05-27 15:08:33 -0700516
517 SkXfermode::Mode getXfermode() const { return fXfermode; }
518
519private:
cdalton6fd158e2015-05-27 15:08:33 -0700520 GrXferProcessor::OptFlags onGetOptimizations(const GrProcOptInfo&, const GrProcOptInfo&,
521 bool, GrColor*, const GrCaps&) override {
bsalomon7765a472015-07-08 11:26:37 -0700522 return kNone_OptFlags;
cdalton6fd158e2015-05-27 15:08:33 -0700523 }
524
egdaniel57d3b032015-11-13 11:57:27 -0800525 void onGetGLSLProcessorKey(const GrGLSLCaps& caps, GrProcessorKeyBuilder* b) const override;
cdalton6fd158e2015-05-27 15:08:33 -0700526
527 bool onIsEqual(const GrXferProcessor& xpBase) const override {
528 const ShaderPDXferProcessor& xp = xpBase.cast<ShaderPDXferProcessor>();
529 return fXfermode == xp.fXfermode;
530 }
531
532 const SkXfermode::Mode fXfermode;
533
534 typedef GrXferProcessor INHERITED;
535};
536
537///////////////////////////////////////////////////////////////////////////////
538
egdanielfa4cc8b2015-11-13 08:34:52 -0800539class GLShaderPDXferProcessor : public GrGLSLXferProcessor {
cdalton6fd158e2015-05-27 15:08:33 -0700540public:
541 static void GenKey(const GrProcessor& processor, GrProcessorKeyBuilder* b) {
542 const ShaderPDXferProcessor& xp = processor.cast<ShaderPDXferProcessor>();
543 b->add32(xp.getXfermode());
egdaniel3ad65702015-02-17 11:15:47 -0800544 }
egdaniel87509242014-12-17 13:37:13 -0800545
cdalton6fd158e2015-05-27 15:08:33 -0700546private:
egdaniel4ca2e602015-11-18 08:01:26 -0800547 void emitBlendCodeForDstRead(GrGLSLXPBuilder* pb,
548 GrGLSLXPFragmentBuilder* fragBuilder,
549 const char* srcColor,
550 const char* dstColor,
551 const char* outColor,
552 const GrXferProcessor& proc) override {
cdaltonedbb31f2015-06-08 12:14:44 -0700553 const ShaderPDXferProcessor& xp = proc.cast<ShaderPDXferProcessor>();
egdaniel95131432014-12-09 11:15:43 -0800554
egdaniel4ca2e602015-11-18 08:01:26 -0800555 GrGLSLBlend::AppendMode(fragBuilder, srcColor, dstColor, outColor, xp.getXfermode());
egdaniel95131432014-12-09 11:15:43 -0800556 }
557
egdaniel018fb622015-10-28 07:26:40 -0700558 void onSetData(const GrGLSLProgramDataManager&, const GrXferProcessor&) override {}
bungemanc33db932015-05-22 17:55:26 -0700559
egdanielfa4cc8b2015-11-13 08:34:52 -0800560 typedef GrGLSLXferProcessor INHERITED;
cdalton6fd158e2015-05-27 15:08:33 -0700561};
bungemanc33db932015-05-22 17:55:26 -0700562
cdalton6fd158e2015-05-27 15:08:33 -0700563///////////////////////////////////////////////////////////////////////////////
bungemanc33db932015-05-22 17:55:26 -0700564
egdaniel57d3b032015-11-13 11:57:27 -0800565void ShaderPDXferProcessor::onGetGLSLProcessorKey(const GrGLSLCaps&,
566 GrProcessorKeyBuilder* b) const {
cdalton6fd158e2015-05-27 15:08:33 -0700567 GLShaderPDXferProcessor::GenKey(*this, b);
bungemanc33db932015-05-22 17:55:26 -0700568}
569
egdaniel57d3b032015-11-13 11:57:27 -0800570GrGLSLXferProcessor* ShaderPDXferProcessor::createGLSLInstance() const {
halcanary385fe4d2015-08-26 13:07:48 -0700571 return new GLShaderPDXferProcessor;
egdanielc2304142014-12-11 13:15:13 -0800572}
573
egdaniel378092f2014-12-03 10:40:13 -0800574///////////////////////////////////////////////////////////////////////////////
575
egdaniel0d5fd112015-05-12 06:11:35 -0700576class PDLCDXferProcessor : public GrXferProcessor {
577public:
cdalton6fd158e2015-05-27 15:08:33 -0700578 static GrXferProcessor* Create(SkXfermode::Mode xfermode, const GrProcOptInfo& colorPOI);
egdaniel0d5fd112015-05-12 06:11:35 -0700579
580 ~PDLCDXferProcessor() override;
581
582 const char* name() const override { return "Porter Duff LCD"; }
583
egdaniel57d3b032015-11-13 11:57:27 -0800584 GrGLSLXferProcessor* createGLSLInstance() const override;
egdaniel0d5fd112015-05-12 06:11:35 -0700585
egdaniel0d5fd112015-05-12 06:11:35 -0700586private:
587 PDLCDXferProcessor(GrColor blendConstant, uint8_t alpha);
588
589 GrXferProcessor::OptFlags onGetOptimizations(const GrProcOptInfo& colorPOI,
590 const GrProcOptInfo& coveragePOI,
591 bool doesStencilWrite,
592 GrColor* overrideColor,
bsalomon4b91f762015-05-19 09:29:46 -0700593 const GrCaps& caps) override;
egdaniel0d5fd112015-05-12 06:11:35 -0700594
egdaniel57d3b032015-11-13 11:57:27 -0800595 void onGetGLSLProcessorKey(const GrGLSLCaps& caps, GrProcessorKeyBuilder* b) const override;
egdaniel0d5fd112015-05-12 06:11:35 -0700596
597 void onGetBlendInfo(GrXferProcessor::BlendInfo* blendInfo) const override {
598 blendInfo->fSrcBlend = kConstC_GrBlendCoeff;
599 blendInfo->fDstBlend = kISC_GrBlendCoeff;
600 blendInfo->fBlendConstant = fBlendConstant;
601 }
602
603 bool onIsEqual(const GrXferProcessor& xpBase) const override {
604 const PDLCDXferProcessor& xp = xpBase.cast<PDLCDXferProcessor>();
605 if (fBlendConstant != xp.fBlendConstant ||
606 fAlpha != xp.fAlpha) {
607 return false;
608 }
609 return true;
610 }
611
612 GrColor fBlendConstant;
613 uint8_t fAlpha;
614
615 typedef GrXferProcessor INHERITED;
616};
617
618///////////////////////////////////////////////////////////////////////////////
619
egdanielfa4cc8b2015-11-13 08:34:52 -0800620class GLPDLCDXferProcessor : public GrGLSLXferProcessor {
egdaniel0d5fd112015-05-12 06:11:35 -0700621public:
622 GLPDLCDXferProcessor(const GrProcessor&) {}
623
624 virtual ~GLPDLCDXferProcessor() {}
625
626 static void GenKey(const GrProcessor& processor, const GrGLSLCaps& caps,
627 GrProcessorKeyBuilder* b) {}
628
629private:
cdaltonedbb31f2015-06-08 12:14:44 -0700630 void emitOutputsForBlendState(const EmitArgs& args) override {
egdaniel4ca2e602015-11-18 08:01:26 -0800631 GrGLSLXPFragmentBuilder* fragBuilder = args.fXPFragBuilder;
632 fragBuilder->codeAppendf("%s = %s * %s;", args.fOutputPrimary, args.fInputColor,
633 args.fInputCoverage);
egdaniel0d5fd112015-05-12 06:11:35 -0700634 }
635
egdaniel018fb622015-10-28 07:26:40 -0700636 void onSetData(const GrGLSLProgramDataManager&, const GrXferProcessor&) override {};
egdaniel0d5fd112015-05-12 06:11:35 -0700637
egdanielfa4cc8b2015-11-13 08:34:52 -0800638 typedef GrGLSLXferProcessor INHERITED;
egdaniel0d5fd112015-05-12 06:11:35 -0700639};
640
641///////////////////////////////////////////////////////////////////////////////
642
643PDLCDXferProcessor::PDLCDXferProcessor(GrColor blendConstant, uint8_t alpha)
644 : fBlendConstant(blendConstant)
645 , fAlpha(alpha) {
646 this->initClassID<PDLCDXferProcessor>();
647}
648
cdalton6fd158e2015-05-27 15:08:33 -0700649GrXferProcessor* PDLCDXferProcessor::Create(SkXfermode::Mode xfermode,
egdaniel0d5fd112015-05-12 06:11:35 -0700650 const GrProcOptInfo& colorPOI) {
cdalton6fd158e2015-05-27 15:08:33 -0700651 if (SkXfermode::kSrcOver_Mode != xfermode) {
halcanary96fcdcc2015-08-27 07:41:13 -0700652 return nullptr;
egdaniel0d5fd112015-05-12 06:11:35 -0700653 }
654
655 if (kRGBA_GrColorComponentFlags != colorPOI.validFlags()) {
halcanary96fcdcc2015-08-27 07:41:13 -0700656 return nullptr;
egdaniel0d5fd112015-05-12 06:11:35 -0700657 }
658
bsalomonae4738f2015-09-15 15:33:27 -0700659 GrColor blendConstant = GrUnpremulColor(colorPOI.color());
egdaniel0d5fd112015-05-12 06:11:35 -0700660 uint8_t alpha = GrColorUnpackA(blendConstant);
661 blendConstant |= (0xff << GrColor_SHIFT_A);
662
halcanary385fe4d2015-08-26 13:07:48 -0700663 return new PDLCDXferProcessor(blendConstant, alpha);
egdaniel0d5fd112015-05-12 06:11:35 -0700664}
665
666PDLCDXferProcessor::~PDLCDXferProcessor() {
667}
668
egdaniel57d3b032015-11-13 11:57:27 -0800669void PDLCDXferProcessor::onGetGLSLProcessorKey(const GrGLSLCaps& caps,
670 GrProcessorKeyBuilder* b) const {
egdanielcc252972015-05-12 12:03:28 -0700671 GLPDLCDXferProcessor::GenKey(*this, caps, b);
egdaniel0d5fd112015-05-12 06:11:35 -0700672}
673
egdaniel57d3b032015-11-13 11:57:27 -0800674GrGLSLXferProcessor* PDLCDXferProcessor::createGLSLInstance() const {
halcanary385fe4d2015-08-26 13:07:48 -0700675 return new GLPDLCDXferProcessor(*this);
egdaniel0d5fd112015-05-12 06:11:35 -0700676}
677
678GrXferProcessor::OptFlags
679PDLCDXferProcessor::onGetOptimizations(const GrProcOptInfo& colorPOI,
680 const GrProcOptInfo& coveragePOI,
681 bool doesStencilWrite,
682 GrColor* overrideColor,
bsalomon4b91f762015-05-19 09:29:46 -0700683 const GrCaps& caps) {
egdaniel0d5fd112015-05-12 06:11:35 -0700684 // We want to force our primary output to be alpha * Coverage, where alpha is the alpha
685 // value of the blend the constant. We should already have valid blend coeff's if we are at
686 // a point where we have RGB coverage. We don't need any color stages since the known color
687 // output is already baked into the blendConstant.
688 *overrideColor = GrColorPackRGBA(fAlpha, fAlpha, fAlpha, fAlpha);
689 return GrXferProcessor::kOverrideColor_OptFlag;
690}
691
692///////////////////////////////////////////////////////////////////////////////
cdalton6fd158e2015-05-27 15:08:33 -0700693
egdanielf2342722015-11-20 15:12:59 -0800694GrPorterDuffXPFactory::GrPorterDuffXPFactory(SkXfermode::Mode xfermode)
cdalton6fd158e2015-05-27 15:08:33 -0700695 : fXfermode(xfermode) {
cdalton1fa45722015-06-02 10:43:39 -0700696 SkASSERT(fXfermode <= SkXfermode::kLastCoeffMode);
egdanielf2342722015-11-20 15:12:59 -0800697 this->initClassID<GrPorterDuffXPFactory>();
egdaniel915187b2014-12-05 12:58:28 -0800698}
699
egdanielf2342722015-11-20 15:12:59 -0800700GrXPFactory* GrPorterDuffXPFactory::Create(SkXfermode::Mode xfermode) {
701 static GrPorterDuffXPFactory gClearPDXPF(SkXfermode::kClear_Mode);
702 static GrPorterDuffXPFactory gSrcPDXPF(SkXfermode::kSrc_Mode);
703 static GrPorterDuffXPFactory gDstPDXPF(SkXfermode::kDst_Mode);
704 static GrPorterDuffXPFactory gSrcOverPDXPF(SkXfermode::kSrcOver_Mode);
705 static GrPorterDuffXPFactory gDstOverPDXPF(SkXfermode::kDstOver_Mode);
706 static GrPorterDuffXPFactory gSrcInPDXPF(SkXfermode::kSrcIn_Mode);
707 static GrPorterDuffXPFactory gDstInPDXPF(SkXfermode::kDstIn_Mode);
708 static GrPorterDuffXPFactory gSrcOutPDXPF(SkXfermode::kSrcOut_Mode);
709 static GrPorterDuffXPFactory gDstOutPDXPF(SkXfermode::kDstOut_Mode);
710 static GrPorterDuffXPFactory gSrcATopPDXPF(SkXfermode::kSrcATop_Mode);
711 static GrPorterDuffXPFactory gDstATopPDXPF(SkXfermode::kDstATop_Mode);
712 static GrPorterDuffXPFactory gXorPDXPF(SkXfermode::kXor_Mode);
713 static GrPorterDuffXPFactory gPlusPDXPF(SkXfermode::kPlus_Mode);
714 static GrPorterDuffXPFactory gModulatePDXPF(SkXfermode::kModulate_Mode);
715 static GrPorterDuffXPFactory gScreenPDXPF(SkXfermode::kScreen_Mode);
cdalton6fd158e2015-05-27 15:08:33 -0700716
egdanielf2342722015-11-20 15:12:59 -0800717 static GrPorterDuffXPFactory* gFactories[] = {
cdalton6fd158e2015-05-27 15:08:33 -0700718 &gClearPDXPF, &gSrcPDXPF, &gDstPDXPF, &gSrcOverPDXPF, &gDstOverPDXPF, &gSrcInPDXPF,
719 &gDstInPDXPF, &gSrcOutPDXPF, &gDstOutPDXPF, &gSrcATopPDXPF, &gDstATopPDXPF, &gXorPDXPF,
720 &gPlusPDXPF, &gModulatePDXPF, &gScreenPDXPF
721 };
722 GR_STATIC_ASSERT(SK_ARRAY_COUNT(gFactories) == SkXfermode::kLastCoeffMode + 1);
723
724 if (xfermode < 0 || xfermode > SkXfermode::kLastCoeffMode) {
halcanary96fcdcc2015-08-27 07:41:13 -0700725 return nullptr;
egdanielc016fb82014-12-03 11:41:54 -0800726 }
cdalton6fd158e2015-05-27 15:08:33 -0700727 return SkRef(gFactories[xfermode]);
egdanielc016fb82014-12-03 11:41:54 -0800728}
729
bsalomon50785a32015-02-06 07:02:37 -0800730GrXferProcessor*
egdanielf2342722015-11-20 15:12:59 -0800731GrPorterDuffXPFactory::onCreateXferProcessor(const GrCaps& caps,
egdaniel3ad65702015-02-17 11:15:47 -0800732 const GrProcOptInfo& colorPOI,
bsalomon50785a32015-02-06 07:02:37 -0800733 const GrProcOptInfo& covPOI,
cdalton86ae0a92015-06-08 15:11:04 -0700734 bool hasMixedSamples,
bsalomon6a44c6a2015-05-26 09:49:05 -0700735 const DstTexture* dstTexture) const {
egdaniel723b0502015-09-15 09:31:40 -0700736 BlendFormula blendFormula;
egdaniel0d5fd112015-05-12 06:11:35 -0700737 if (covPOI.isFourChannelOutput()) {
egdaniel723b0502015-09-15 09:31:40 -0700738 if (SkXfermode::kSrcOver_Mode == fXfermode &&
egdaniele73f1f62015-09-22 10:10:55 -0700739 kRGBA_GrColorComponentFlags == colorPOI.validFlags() &&
740 !caps.shaderCaps()->dualSourceBlendingSupport() &&
741 !caps.shaderCaps()->dstReadInShaderSupport()) {
742 // If we don't have dual source blending or in shader dst reads, we fall back to this
743 // trick for rendering SrcOver LCD text instead of doing a dst copy.
egdaniel723b0502015-09-15 09:31:40 -0700744 SkASSERT(!dstTexture || !dstTexture->texture());
745 return PDLCDXferProcessor::Create(fXfermode, colorPOI);
746 }
747 blendFormula = get_lcd_blend_formula(covPOI, fXfermode);
748 } else {
749 blendFormula = get_blend_formula(colorPOI, covPOI, hasMixedSamples, fXfermode);
egdaniel95131432014-12-09 11:15:43 -0800750 }
cdalton6fd158e2015-05-27 15:08:33 -0700751
cdalton6fd158e2015-05-27 15:08:33 -0700752 if (blendFormula.hasSecondaryOutput() && !caps.shaderCaps()->dualSourceBlendingSupport()) {
halcanary385fe4d2015-08-26 13:07:48 -0700753 return new ShaderPDXferProcessor(dstTexture, hasMixedSamples, fXfermode);
cdalton6fd158e2015-05-27 15:08:33 -0700754 }
755
756 SkASSERT(!dstTexture || !dstTexture->texture());
halcanary385fe4d2015-08-26 13:07:48 -0700757 return new PorterDuffXferProcessor(blendFormula);
egdaniel378092f2014-12-03 10:40:13 -0800758}
759
egdanielf2342722015-11-20 15:12:59 -0800760void GrPorterDuffXPFactory::getInvariantBlendedColor(const GrProcOptInfo& colorPOI,
cdalton1fa45722015-06-02 10:43:39 -0700761 InvariantBlendedColor* blendedColor) const {
762 // Find the blended color info based on the formula that does not have coverage.
763 BlendFormula colorFormula = gBlendTable[colorPOI.isOpaque()][0][fXfermode];
764 if (colorFormula.usesDstColor()) {
765 blendedColor->fWillBlendWithDst = true;
766 blendedColor->fKnownColorFlags = kNone_GrColorComponentFlags;
egdaniel9e4ecdc2014-12-18 12:44:55 -0800767 return;
egdaniel95131432014-12-09 11:15:43 -0800768 }
769
cdalton1fa45722015-06-02 10:43:39 -0700770 blendedColor->fWillBlendWithDst = false;
bungemanc33db932015-05-22 17:55:26 -0700771
cdalton1fa45722015-06-02 10:43:39 -0700772 SkASSERT(kAdd_GrBlendEquation == colorFormula.fBlendEquation);
bungemanc33db932015-05-22 17:55:26 -0700773
cdalton1fa45722015-06-02 10:43:39 -0700774 switch (colorFormula.fSrcCoeff) {
egdaniel9e4ecdc2014-12-18 12:44:55 -0800775 case kZero_GrBlendCoeff:
cdalton1fa45722015-06-02 10:43:39 -0700776 blendedColor->fKnownColor = 0;
777 blendedColor->fKnownColorFlags = kRGBA_GrColorComponentFlags;
cdalton6fd158e2015-05-27 15:08:33 -0700778 return;
egdaniel9e4ecdc2014-12-18 12:44:55 -0800779
780 case kOne_GrBlendCoeff:
cdalton1fa45722015-06-02 10:43:39 -0700781 blendedColor->fKnownColor = colorPOI.color();
782 blendedColor->fKnownColorFlags = colorPOI.validFlags();
cdalton6fd158e2015-05-27 15:08:33 -0700783 return;
egdaniel9e4ecdc2014-12-18 12:44:55 -0800784
cdalton1fa45722015-06-02 10:43:39 -0700785 default:
786 blendedColor->fKnownColorFlags = kNone_GrColorComponentFlags;
787 return;
egdaniel9e4ecdc2014-12-18 12:44:55 -0800788 }
egdaniel95131432014-12-09 11:15:43 -0800789}
790
egdanielf2342722015-11-20 15:12:59 -0800791bool GrPorterDuffXPFactory::willReadDstColor(const GrCaps& caps,
egdaniel3ad65702015-02-17 11:15:47 -0800792 const GrProcOptInfo& colorPOI,
cdalton86ae0a92015-06-08 15:11:04 -0700793 const GrProcOptInfo& covPOI,
794 bool hasMixedSamples) const {
795 if (caps.shaderCaps()->dualSourceBlendingSupport()) {
796 return false;
bungemanc33db932015-05-22 17:55:26 -0700797 }
egdaniel723b0502015-09-15 09:31:40 -0700798
799 // When we have four channel coverage we always need to read the dst in order to correctly
800 // blend. The one exception is when we are using srcover mode and we know the input color into
801 // the XP.
cdalton86ae0a92015-06-08 15:11:04 -0700802 if (covPOI.isFourChannelOutput()) {
egdaniel723b0502015-09-15 09:31:40 -0700803 if (SkXfermode::kSrcOver_Mode == fXfermode &&
egdaniele73f1f62015-09-22 10:10:55 -0700804 kRGBA_GrColorComponentFlags == colorPOI.validFlags() &&
805 !caps.shaderCaps()->dstReadInShaderSupport()) {
egdaniel723b0502015-09-15 09:31:40 -0700806 return false;
807 }
808 return get_lcd_blend_formula(covPOI, fXfermode).hasSecondaryOutput();
cdalton86ae0a92015-06-08 15:11:04 -0700809 }
cdalton6fd158e2015-05-27 15:08:33 -0700810 // We fallback on the shader XP when the blend formula would use dual source blending but we
811 // don't have support for it.
cdalton86ae0a92015-06-08 15:11:04 -0700812 return get_blend_formula(colorPOI, covPOI, hasMixedSamples, fXfermode).hasSecondaryOutput();
bsalomon50785a32015-02-06 07:02:37 -0800813}
814
egdanielf2342722015-11-20 15:12:59 -0800815GR_DEFINE_XP_FACTORY_TEST(GrPorterDuffXPFactory);
egdanielc2304142014-12-11 13:15:13 -0800816
egdanielf2342722015-11-20 15:12:59 -0800817const GrXPFactory* GrPorterDuffXPFactory::TestCreate(GrProcessorTestData* d) {
joshualitt0067ff52015-07-08 14:26:19 -0700818 SkXfermode::Mode mode = SkXfermode::Mode(d->fRandom->nextULessThan(SkXfermode::kLastCoeffMode));
egdanielf2342722015-11-20 15:12:59 -0800819 return GrPorterDuffXPFactory::Create(mode);
egdanielc2304142014-12-11 13:15:13 -0800820}
egdaniel95131432014-12-09 11:15:43 -0800821
egdanielf2342722015-11-20 15:12:59 -0800822void GrPorterDuffXPFactory::TestGetXPOutputTypes(const GrXferProcessor* xp,
823 int* outPrimary,
824 int* outSecondary) {
cdalton6fd158e2015-05-27 15:08:33 -0700825 if (!!strcmp(xp->name(), "Porter Duff")) {
826 *outPrimary = *outSecondary = -1;
827 return;
828 }
829 BlendFormula blendFormula = static_cast<const PorterDuffXferProcessor*>(xp)->getBlendFormula();
830 *outPrimary = blendFormula.fPrimaryOutputType;
831 *outSecondary = blendFormula.fSecondaryOutputType;
832}
egdanielc4b72722015-11-23 13:20:41 -0800833
834
835////////////////////////////////////////////////////////////////////////////////////////////////
836// SrcOver Global functions
837////////////////////////////////////////////////////////////////////////////////////////////////
838
839GrXferProcessor* GrPorterDuffXPFactory::CreateSrcOverXferProcessor(
840 const GrCaps& caps,
841 const GrProcOptInfo& colorPOI,
842 const GrProcOptInfo& covPOI,
843 bool hasMixedSamples,
844 const GrXferProcessor::DstTexture* dstTexture) {
845 BlendFormula blendFormula;
846 if (covPOI.isFourChannelOutput()) {
847 if (kRGBA_GrColorComponentFlags == colorPOI.validFlags() &&
848 !caps.shaderCaps()->dualSourceBlendingSupport() &&
849 !caps.shaderCaps()->dstReadInShaderSupport()) {
850 // If we don't have dual source blending or in shader dst reads, we fall
851 // back to this trick for rendering SrcOver LCD text instead of doing a
852 // dst copy.
853 SkASSERT(!dstTexture || !dstTexture->texture());
854 return PDLCDXferProcessor::Create(SkXfermode::kSrcOver_Mode, colorPOI);
855 }
856 blendFormula = get_lcd_blend_formula(covPOI, SkXfermode::kSrcOver_Mode);
857 } else {
858 blendFormula = get_blend_formula(colorPOI, covPOI, hasMixedSamples,
859 SkXfermode::kSrcOver_Mode);
860 }
861
862 if (blendFormula.hasSecondaryOutput() && !caps.shaderCaps()->dualSourceBlendingSupport()) {
863 return new ShaderPDXferProcessor(dstTexture, hasMixedSamples, SkXfermode::kSrcOver_Mode);
864 }
865
866 SkASSERT(!dstTexture || !dstTexture->texture());
867 return new PorterDuffXferProcessor(blendFormula);
868}
869
870bool GrPorterDuffXPFactory::SrcOverWillNeedDstTexture(const GrCaps& caps,
871 const GrProcOptInfo& colorPOI,
872 const GrProcOptInfo& covPOI,
873 bool hasMixedSamples) {
874 if (caps.shaderCaps()->dstReadInShaderSupport() ||
875 caps.shaderCaps()->dualSourceBlendingSupport()) {
876 return false;
877 }
878
879 // When we have four channel coverage we always need to read the dst in order to correctly
880 // blend. The one exception is when we are using srcover mode and we know the input color
881 // into the XP.
882 if (covPOI.isFourChannelOutput()) {
883 if (kRGBA_GrColorComponentFlags == colorPOI.validFlags() &&
884 !caps.shaderCaps()->dstReadInShaderSupport()) {
885 return false;
886 }
887 return get_lcd_blend_formula(covPOI, SkXfermode::kSrcOver_Mode).hasSecondaryOutput();
888 }
889 // We fallback on the shader XP when the blend formula would use dual source blending but we
890 // don't have support for it.
891 return get_blend_formula(colorPOI, covPOI,
892 hasMixedSamples, SkXfermode::kSrcOver_Mode).hasSecondaryOutput();
893}
894