egdaniel | 0063a9b | 2015-01-15 10:52:32 -0800 | [diff] [blame] | 1 | /* |
| 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 | |
| 8 | #include "effects/GrCustomXfermode.h" |
egdaniel | 0063a9b | 2015-01-15 10:52:32 -0800 | [diff] [blame] | 9 | |
| 10 | #include "GrCoordTransform.h" |
| 11 | #include "GrContext.h" |
| 12 | #include "GrFragmentProcessor.h" |
| 13 | #include "GrInvariantOutput.h" |
ethannicholas | de4166a | 2015-11-30 08:57:38 -0800 | [diff] [blame] | 14 | #include "GrPipeline.h" |
egdaniel | 0063a9b | 2015-01-15 10:52:32 -0800 | [diff] [blame] | 15 | #include "GrProcessor.h" |
Brian Salomon | 94efbf5 | 2016-11-29 13:43:05 -0500 | [diff] [blame] | 16 | #include "GrShaderCaps.h" |
egdaniel | 0063a9b | 2015-01-15 10:52:32 -0800 | [diff] [blame] | 17 | #include "GrTexture.h" |
egdaniel | 64c4728 | 2015-11-13 06:54:19 -0800 | [diff] [blame] | 18 | #include "glsl/GrGLSLBlend.h" |
egdaniel | 64c4728 | 2015-11-13 06:54:19 -0800 | [diff] [blame] | 19 | #include "glsl/GrGLSLFragmentProcessor.h" |
egdaniel | 2d721d3 | 2015-11-11 13:06:05 -0800 | [diff] [blame] | 20 | #include "glsl/GrGLSLFragmentShaderBuilder.h" |
egdaniel | 018fb62 | 2015-10-28 07:26:40 -0700 | [diff] [blame] | 21 | #include "glsl/GrGLSLProgramDataManager.h" |
egdaniel | 7ea439b | 2015-12-03 09:20:44 -0800 | [diff] [blame] | 22 | #include "glsl/GrGLSLUniformHandler.h" |
egdaniel | fa4cc8b | 2015-11-13 08:34:52 -0800 | [diff] [blame] | 23 | #include "glsl/GrGLSLXferProcessor.h" |
egdaniel | 0063a9b | 2015-01-15 10:52:32 -0800 | [diff] [blame] | 24 | |
Mike Reed | 7d954ad | 2016-10-28 15:42:34 -0400 | [diff] [blame] | 25 | bool GrCustomXfermode::IsSupportedMode(SkBlendMode mode) { |
| 26 | return (int)mode > (int)SkBlendMode::kLastCoeffMode && |
| 27 | (int)mode <= (int)SkBlendMode::kLastMode; |
egdaniel | 0063a9b | 2015-01-15 10:52:32 -0800 | [diff] [blame] | 28 | } |
| 29 | |
| 30 | /////////////////////////////////////////////////////////////////////////////// |
| 31 | // Static helpers |
| 32 | /////////////////////////////////////////////////////////////////////////////// |
| 33 | |
Brian Salomon | a163392 | 2017-01-09 11:46:10 -0500 | [diff] [blame] | 34 | static constexpr GrBlendEquation hw_blend_equation(SkBlendMode mode) { |
| 35 | // In C++14 this could be a constexpr int variable. |
| 36 | #define EQ_OFFSET (kOverlay_GrBlendEquation - (int)SkBlendMode::kOverlay) |
| 37 | GR_STATIC_ASSERT(kOverlay_GrBlendEquation == (int)SkBlendMode::kOverlay + EQ_OFFSET); |
| 38 | GR_STATIC_ASSERT(kDarken_GrBlendEquation == (int)SkBlendMode::kDarken + EQ_OFFSET); |
| 39 | GR_STATIC_ASSERT(kLighten_GrBlendEquation == (int)SkBlendMode::kLighten + EQ_OFFSET); |
| 40 | GR_STATIC_ASSERT(kColorDodge_GrBlendEquation == (int)SkBlendMode::kColorDodge + EQ_OFFSET); |
| 41 | GR_STATIC_ASSERT(kColorBurn_GrBlendEquation == (int)SkBlendMode::kColorBurn + EQ_OFFSET); |
| 42 | GR_STATIC_ASSERT(kHardLight_GrBlendEquation == (int)SkBlendMode::kHardLight + EQ_OFFSET); |
| 43 | GR_STATIC_ASSERT(kSoftLight_GrBlendEquation == (int)SkBlendMode::kSoftLight + EQ_OFFSET); |
| 44 | GR_STATIC_ASSERT(kDifference_GrBlendEquation == (int)SkBlendMode::kDifference + EQ_OFFSET); |
| 45 | GR_STATIC_ASSERT(kExclusion_GrBlendEquation == (int)SkBlendMode::kExclusion + EQ_OFFSET); |
| 46 | GR_STATIC_ASSERT(kMultiply_GrBlendEquation == (int)SkBlendMode::kMultiply + EQ_OFFSET); |
| 47 | GR_STATIC_ASSERT(kHSLHue_GrBlendEquation == (int)SkBlendMode::kHue + EQ_OFFSET); |
| 48 | GR_STATIC_ASSERT(kHSLSaturation_GrBlendEquation == (int)SkBlendMode::kSaturation + EQ_OFFSET); |
| 49 | GR_STATIC_ASSERT(kHSLColor_GrBlendEquation == (int)SkBlendMode::kColor + EQ_OFFSET); |
| 50 | GR_STATIC_ASSERT(kHSLLuminosity_GrBlendEquation == (int)SkBlendMode::kLuminosity + EQ_OFFSET); |
| 51 | GR_STATIC_ASSERT(kGrBlendEquationCnt == (int)SkBlendMode::kLastMode + 1 + EQ_OFFSET); |
| 52 | return static_cast<GrBlendEquation>((int)mode + EQ_OFFSET); |
| 53 | #undef EQ_OFFSET |
cdalton | 8917d62 | 2015-05-06 13:40:21 -0700 | [diff] [blame] | 54 | } |
| 55 | |
cdalton | 1dd0542 | 2015-06-12 09:01:18 -0700 | [diff] [blame] | 56 | static bool can_use_hw_blend_equation(GrBlendEquation equation, |
Brian Salomon | 5be6c95 | 2017-01-20 19:06:29 +0000 | [diff] [blame] | 57 | bool usePLSRead, |
| 58 | bool isLCDCoverage, |
cdalton | 1dd0542 | 2015-06-12 09:01:18 -0700 | [diff] [blame] | 59 | const GrCaps& caps) { |
cdalton | f0df189 | 2015-06-05 13:26:20 -0700 | [diff] [blame] | 60 | if (!caps.advancedBlendEquationSupport()) { |
| 61 | return false; |
| 62 | } |
Brian Salomon | 5be6c95 | 2017-01-20 19:06:29 +0000 | [diff] [blame] | 63 | if (usePLSRead) { |
ethannicholas | 2279325 | 2016-01-30 09:59:10 -0800 | [diff] [blame] | 64 | return false; |
| 65 | } |
Brian Salomon | 5be6c95 | 2017-01-20 19:06:29 +0000 | [diff] [blame] | 66 | if (isLCDCoverage) { |
cdalton | f0df189 | 2015-06-05 13:26:20 -0700 | [diff] [blame] | 67 | return false; // LCD coverage must be applied after the blend equation. |
| 68 | } |
cdalton | 1dd0542 | 2015-06-12 09:01:18 -0700 | [diff] [blame] | 69 | if (caps.canUseAdvancedBlendEquation(equation)) { |
| 70 | return false; |
| 71 | } |
cdalton | f0df189 | 2015-06-05 13:26:20 -0700 | [diff] [blame] | 72 | return true; |
| 73 | } |
| 74 | |
egdaniel | 54f0e9d | 2015-01-16 06:29:47 -0800 | [diff] [blame] | 75 | /////////////////////////////////////////////////////////////////////////////// |
| 76 | // Xfer Processor |
| 77 | /////////////////////////////////////////////////////////////////////////////// |
| 78 | |
egdaniel | 41d4f09 | 2015-02-09 07:51:00 -0800 | [diff] [blame] | 79 | class CustomXP : public GrXferProcessor { |
| 80 | public: |
Mike Reed | 7d954ad | 2016-10-28 15:42:34 -0400 | [diff] [blame] | 81 | CustomXP(SkBlendMode mode, GrBlendEquation hwBlendEquation) |
cdalton | f0df189 | 2015-06-05 13:26:20 -0700 | [diff] [blame] | 82 | : fMode(mode), |
| 83 | fHWBlendEquation(hwBlendEquation) { |
| 84 | this->initClassID<CustomXP>(); |
egdaniel | 41d4f09 | 2015-02-09 07:51:00 -0800 | [diff] [blame] | 85 | } |
| 86 | |
Mike Reed | 7d954ad | 2016-10-28 15:42:34 -0400 | [diff] [blame] | 87 | CustomXP(const DstTexture* dstTexture, bool hasMixedSamples, SkBlendMode mode) |
cdalton | 86ae0a9 | 2015-06-08 15:11:04 -0700 | [diff] [blame] | 88 | : INHERITED(dstTexture, true, hasMixedSamples), |
cdalton | f0df189 | 2015-06-05 13:26:20 -0700 | [diff] [blame] | 89 | fMode(mode), |
| 90 | fHWBlendEquation(static_cast<GrBlendEquation>(-1)) { |
| 91 | this->initClassID<CustomXP>(); |
| 92 | } |
egdaniel | 41d4f09 | 2015-02-09 07:51:00 -0800 | [diff] [blame] | 93 | |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 94 | const char* name() const override { return "Custom Xfermode"; } |
egdaniel | 41d4f09 | 2015-02-09 07:51:00 -0800 | [diff] [blame] | 95 | |
egdaniel | 57d3b03 | 2015-11-13 11:57:27 -0800 | [diff] [blame] | 96 | GrGLSLXferProcessor* createGLSLInstance() const override; |
egdaniel | 41d4f09 | 2015-02-09 07:51:00 -0800 | [diff] [blame] | 97 | |
Mike Reed | 7d954ad | 2016-10-28 15:42:34 -0400 | [diff] [blame] | 98 | SkBlendMode mode() const { return fMode; } |
bsalomon | f7cc877 | 2015-05-11 11:21:14 -0700 | [diff] [blame] | 99 | bool hasHWBlendEquation() const { return -1 != static_cast<int>(fHWBlendEquation); } |
cdalton | 8917d62 | 2015-05-06 13:40:21 -0700 | [diff] [blame] | 100 | |
| 101 | GrBlendEquation hwBlendEquation() const { |
| 102 | SkASSERT(this->hasHWBlendEquation()); |
| 103 | return fHWBlendEquation; |
| 104 | } |
egdaniel | 41d4f09 | 2015-02-09 07:51:00 -0800 | [diff] [blame] | 105 | |
| 106 | private: |
Brian Salomon | 92aee3d | 2016-12-21 09:20:25 -0500 | [diff] [blame] | 107 | GrXferProcessor::OptFlags onGetOptimizations(const GrPipelineAnalysis&, |
egdaniel | c19cdc2 | 2015-05-10 08:45:18 -0700 | [diff] [blame] | 108 | bool doesStencilWrite, |
| 109 | GrColor* overrideColor, |
egdaniel | 56cf6dc | 2015-11-30 10:15:58 -0800 | [diff] [blame] | 110 | const GrCaps& caps) const override; |
egdaniel | c19cdc2 | 2015-05-10 08:45:18 -0700 | [diff] [blame] | 111 | |
Brian Salomon | 94efbf5 | 2016-11-29 13:43:05 -0500 | [diff] [blame] | 112 | void onGetGLSLProcessorKey(const GrShaderCaps& caps, GrProcessorKeyBuilder* b) const override; |
egdaniel | 41d4f09 | 2015-02-09 07:51:00 -0800 | [diff] [blame] | 113 | |
bsalomon | cb02b38 | 2015-08-12 11:14:50 -0700 | [diff] [blame] | 114 | GrXferBarrierType onXferBarrier(const GrRenderTarget*, const GrCaps&) const override; |
cdalton | 8917d62 | 2015-05-06 13:40:21 -0700 | [diff] [blame] | 115 | |
| 116 | void onGetBlendInfo(BlendInfo*) const override; |
| 117 | |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 118 | bool onIsEqual(const GrXferProcessor& xpBase) const override; |
egdaniel | 41d4f09 | 2015-02-09 07:51:00 -0800 | [diff] [blame] | 119 | |
Mike Reed | 7d954ad | 2016-10-28 15:42:34 -0400 | [diff] [blame] | 120 | const SkBlendMode fMode; |
cdalton | f0df189 | 2015-06-05 13:26:20 -0700 | [diff] [blame] | 121 | const GrBlendEquation fHWBlendEquation; |
egdaniel | 41d4f09 | 2015-02-09 07:51:00 -0800 | [diff] [blame] | 122 | |
| 123 | typedef GrXferProcessor INHERITED; |
| 124 | }; |
| 125 | |
| 126 | /////////////////////////////////////////////////////////////////////////////// |
| 127 | |
egdaniel | fa4cc8b | 2015-11-13 08:34:52 -0800 | [diff] [blame] | 128 | class GLCustomXP : public GrGLSLXferProcessor { |
egdaniel | 54f0e9d | 2015-01-16 06:29:47 -0800 | [diff] [blame] | 129 | public: |
| 130 | GLCustomXP(const GrXferProcessor&) {} |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 131 | ~GLCustomXP() override {} |
egdaniel | 54f0e9d | 2015-01-16 06:29:47 -0800 | [diff] [blame] | 132 | |
Brian Salomon | 94efbf5 | 2016-11-29 13:43:05 -0500 | [diff] [blame] | 133 | static void GenKey(const GrXferProcessor& p, const GrShaderCaps& caps, |
| 134 | GrProcessorKeyBuilder* b) { |
cdalton | 8917d62 | 2015-05-06 13:40:21 -0700 | [diff] [blame] | 135 | const CustomXP& xp = p.cast<CustomXP>(); |
cdalton | edbb31f | 2015-06-08 12:14:44 -0700 | [diff] [blame] | 136 | uint32_t key = 0; |
cdalton | 8917d62 | 2015-05-06 13:40:21 -0700 | [diff] [blame] | 137 | if (xp.hasHWBlendEquation()) { |
| 138 | SkASSERT(caps.advBlendEqInteraction() > 0); // 0 will mean !xp.hasHWBlendEquation(). |
cdalton | edbb31f | 2015-06-08 12:14:44 -0700 | [diff] [blame] | 139 | key |= caps.advBlendEqInteraction(); |
Brian Salomon | 94efbf5 | 2016-11-29 13:43:05 -0500 | [diff] [blame] | 140 | GR_STATIC_ASSERT(GrShaderCaps::kLast_AdvBlendEqInteraction < 4); |
cdalton | 8917d62 | 2015-05-06 13:40:21 -0700 | [diff] [blame] | 141 | } |
| 142 | if (!xp.hasHWBlendEquation() || caps.mustEnableSpecificAdvBlendEqs()) { |
Mike Reed | 7d954ad | 2016-10-28 15:42:34 -0400 | [diff] [blame] | 143 | key |= (int)xp.mode() << 3; |
cdalton | 8917d62 | 2015-05-06 13:40:21 -0700 | [diff] [blame] | 144 | } |
bsalomon | 50785a3 | 2015-02-06 07:02:37 -0800 | [diff] [blame] | 145 | b->add32(key); |
| 146 | } |
| 147 | |
| 148 | private: |
cdalton | edbb31f | 2015-06-08 12:14:44 -0700 | [diff] [blame] | 149 | void emitOutputsForBlendState(const EmitArgs& args) override { |
cdalton | 8917d62 | 2015-05-06 13:40:21 -0700 | [diff] [blame] | 150 | const CustomXP& xp = args.fXP.cast<CustomXP>(); |
cdalton | edbb31f | 2015-06-08 12:14:44 -0700 | [diff] [blame] | 151 | SkASSERT(xp.hasHWBlendEquation()); |
egdaniel | 54f0e9d | 2015-01-16 06:29:47 -0800 | [diff] [blame] | 152 | |
egdaniel | 4ca2e60 | 2015-11-18 08:01:26 -0800 | [diff] [blame] | 153 | GrGLSLXPFragmentBuilder* fragBuilder = args.fXPFragBuilder; |
| 154 | fragBuilder->enableAdvancedBlendEquationIfNeeded(xp.hwBlendEquation()); |
cdalton | edbb31f | 2015-06-08 12:14:44 -0700 | [diff] [blame] | 155 | |
cdalton | 86ae0a9 | 2015-06-08 15:11:04 -0700 | [diff] [blame] | 156 | // Apply coverage by multiplying it into the src color before blending. Mixed samples will |
| 157 | // "just work" automatically. (See onGetOptimizations()) |
Brian Salomon | 8c852be | 2017-01-04 10:44:42 -0500 | [diff] [blame] | 158 | fragBuilder->codeAppendf("%s = %s * %s;", args.fOutputPrimary, args.fInputCoverage, |
| 159 | args.fInputColor); |
egdaniel | 54f0e9d | 2015-01-16 06:29:47 -0800 | [diff] [blame] | 160 | } |
| 161 | |
egdaniel | 7ea439b | 2015-12-03 09:20:44 -0800 | [diff] [blame] | 162 | void emitBlendCodeForDstRead(GrGLSLXPFragmentBuilder* fragBuilder, |
| 163 | GrGLSLUniformHandler* uniformHandler, |
egdaniel | 4ca2e60 | 2015-11-18 08:01:26 -0800 | [diff] [blame] | 164 | const char* srcColor, |
egdaniel | f34b293 | 2015-12-01 13:54:06 -0800 | [diff] [blame] | 165 | const char* srcCoverage, |
egdaniel | 4ca2e60 | 2015-11-18 08:01:26 -0800 | [diff] [blame] | 166 | const char* dstColor, |
| 167 | const char* outColor, |
egdaniel | f34b293 | 2015-12-01 13:54:06 -0800 | [diff] [blame] | 168 | const char* outColorSecondary, |
egdaniel | 4ca2e60 | 2015-11-18 08:01:26 -0800 | [diff] [blame] | 169 | const GrXferProcessor& proc) override { |
cdalton | edbb31f | 2015-06-08 12:14:44 -0700 | [diff] [blame] | 170 | const CustomXP& xp = proc.cast<CustomXP>(); |
| 171 | SkASSERT(!xp.hasHWBlendEquation()); |
| 172 | |
egdaniel | 4ca2e60 | 2015-11-18 08:01:26 -0800 | [diff] [blame] | 173 | GrGLSLBlend::AppendMode(fragBuilder, srcColor, dstColor, outColor, xp.mode()); |
egdaniel | f34b293 | 2015-12-01 13:54:06 -0800 | [diff] [blame] | 174 | |
| 175 | // Apply coverage. |
robertphillips | f42fca4 | 2016-01-27 05:00:04 -0800 | [diff] [blame] | 176 | INHERITED::DefaultCoverageModulation(fragBuilder, srcCoverage, dstColor, outColor, |
| 177 | outColorSecondary, xp); |
cdalton | edbb31f | 2015-06-08 12:14:44 -0700 | [diff] [blame] | 178 | } |
| 179 | |
egdaniel | 018fb62 | 2015-10-28 07:26:40 -0700 | [diff] [blame] | 180 | void onSetData(const GrGLSLProgramDataManager&, const GrXferProcessor&) override {} |
egdaniel | 54f0e9d | 2015-01-16 06:29:47 -0800 | [diff] [blame] | 181 | |
egdaniel | fa4cc8b | 2015-11-13 08:34:52 -0800 | [diff] [blame] | 182 | typedef GrGLSLXferProcessor INHERITED; |
egdaniel | 54f0e9d | 2015-01-16 06:29:47 -0800 | [diff] [blame] | 183 | }; |
| 184 | |
| 185 | /////////////////////////////////////////////////////////////////////////////// |
| 186 | |
Brian Salomon | 94efbf5 | 2016-11-29 13:43:05 -0500 | [diff] [blame] | 187 | void CustomXP::onGetGLSLProcessorKey(const GrShaderCaps& caps, GrProcessorKeyBuilder* b) const { |
egdaniel | 54f0e9d | 2015-01-16 06:29:47 -0800 | [diff] [blame] | 188 | GLCustomXP::GenKey(*this, caps, b); |
| 189 | } |
| 190 | |
egdaniel | 57d3b03 | 2015-11-13 11:57:27 -0800 | [diff] [blame] | 191 | GrGLSLXferProcessor* CustomXP::createGLSLInstance() const { |
cdalton | 8917d62 | 2015-05-06 13:40:21 -0700 | [diff] [blame] | 192 | SkASSERT(this->willReadDstColor() != this->hasHWBlendEquation()); |
halcanary | 385fe4d | 2015-08-26 13:07:48 -0700 | [diff] [blame] | 193 | return new GLCustomXP(*this); |
egdaniel | 54f0e9d | 2015-01-16 06:29:47 -0800 | [diff] [blame] | 194 | } |
| 195 | |
egdaniel | 41d4f09 | 2015-02-09 07:51:00 -0800 | [diff] [blame] | 196 | bool CustomXP::onIsEqual(const GrXferProcessor& other) const { |
| 197 | const CustomXP& s = other.cast<CustomXP>(); |
egdaniel | c19cdc2 | 2015-05-10 08:45:18 -0700 | [diff] [blame] | 198 | return fMode == s.fMode && fHWBlendEquation == s.fHWBlendEquation; |
egdaniel | 54f0e9d | 2015-01-16 06:29:47 -0800 | [diff] [blame] | 199 | } |
| 200 | |
Brian Salomon | 92aee3d | 2016-12-21 09:20:25 -0500 | [diff] [blame] | 201 | GrXferProcessor::OptFlags CustomXP::onGetOptimizations(const GrPipelineAnalysis& analysis, |
egdaniel | 54f0e9d | 2015-01-16 06:29:47 -0800 | [diff] [blame] | 202 | bool doesStencilWrite, |
| 203 | GrColor* overrideColor, |
egdaniel | 56cf6dc | 2015-11-30 10:15:58 -0800 | [diff] [blame] | 204 | const GrCaps& caps) const { |
Brian Salomon | 92aee3d | 2016-12-21 09:20:25 -0500 | [diff] [blame] | 205 | /* |
| 206 | Most the optimizations we do here are based on tweaking alpha for coverage. |
cdalton | 8917d62 | 2015-05-06 13:40:21 -0700 | [diff] [blame] | 207 | |
Brian Salomon | 92aee3d | 2016-12-21 09:20:25 -0500 | [diff] [blame] | 208 | The general SVG blend equation is defined in the spec as follows: |
cdalton | 8917d62 | 2015-05-06 13:40:21 -0700 | [diff] [blame] | 209 | |
Brian Salomon | 92aee3d | 2016-12-21 09:20:25 -0500 | [diff] [blame] | 210 | Dca' = B(Sc, Dc) * Sa * Da + Y * Sca * (1-Da) + Z * Dca * (1-Sa) |
| 211 | Da' = X * Sa * Da + Y * Sa * (1-Da) + Z * Da * (1-Sa) |
cdalton | 8917d62 | 2015-05-06 13:40:21 -0700 | [diff] [blame] | 212 | |
Brian Salomon | 92aee3d | 2016-12-21 09:20:25 -0500 | [diff] [blame] | 213 | (Note that Sca, Dca indicate RGB vectors that are premultiplied by alpha, |
| 214 | and that B(Sc, Dc) is a mode-specific function that accepts non-multiplied |
| 215 | RGB colors.) |
cdalton | 8917d62 | 2015-05-06 13:40:21 -0700 | [diff] [blame] | 216 | |
Brian Salomon | 92aee3d | 2016-12-21 09:20:25 -0500 | [diff] [blame] | 217 | For every blend mode supported by this class, i.e. the "advanced" blend |
| 218 | modes, X=Y=Z=1 and this equation reduces to the PDF blend equation. |
cdalton | 8917d62 | 2015-05-06 13:40:21 -0700 | [diff] [blame] | 219 | |
Brian Salomon | 92aee3d | 2016-12-21 09:20:25 -0500 | [diff] [blame] | 220 | It can be shown that when X=Y=Z=1, these equations can modulate alpha for |
| 221 | coverage. |
cdalton | 8917d62 | 2015-05-06 13:40:21 -0700 | [diff] [blame] | 222 | |
| 223 | |
Brian Salomon | 92aee3d | 2016-12-21 09:20:25 -0500 | [diff] [blame] | 224 | == Color == |
cdalton | 8917d62 | 2015-05-06 13:40:21 -0700 | [diff] [blame] | 225 | |
Brian Salomon | 92aee3d | 2016-12-21 09:20:25 -0500 | [diff] [blame] | 226 | We substitute Y=Z=1 and define a blend() function that calculates Dca' in |
| 227 | terms of premultiplied alpha only: |
cdalton | 8917d62 | 2015-05-06 13:40:21 -0700 | [diff] [blame] | 228 | |
Brian Salomon | 92aee3d | 2016-12-21 09:20:25 -0500 | [diff] [blame] | 229 | blend(Sca, Dca, Sa, Da) = {Dca : if Sa == 0, |
| 230 | Sca : if Da == 0, |
| 231 | B(Sca/Sa, Dca/Da) * Sa * Da + Sca * (1-Da) + Dca * (1-Sa) : if |
| 232 | Sa,Da != 0} |
cdalton | 8917d62 | 2015-05-06 13:40:21 -0700 | [diff] [blame] | 233 | |
Brian Salomon | 92aee3d | 2016-12-21 09:20:25 -0500 | [diff] [blame] | 234 | And for coverage modulation, we use a post blend src-over model: |
cdalton | 8917d62 | 2015-05-06 13:40:21 -0700 | [diff] [blame] | 235 | |
Brian Salomon | 92aee3d | 2016-12-21 09:20:25 -0500 | [diff] [blame] | 236 | Dca'' = f * blend(Sca, Dca, Sa, Da) + (1-f) * Dca |
cdalton | 8917d62 | 2015-05-06 13:40:21 -0700 | [diff] [blame] | 237 | |
Brian Salomon | 92aee3d | 2016-12-21 09:20:25 -0500 | [diff] [blame] | 238 | (Where f is the fractional coverage.) |
cdalton | 8917d62 | 2015-05-06 13:40:21 -0700 | [diff] [blame] | 239 | |
Brian Salomon | 92aee3d | 2016-12-21 09:20:25 -0500 | [diff] [blame] | 240 | Next we show that canTweakAlphaForCoverage() is true by proving the |
| 241 | following relationship: |
cdalton | 8917d62 | 2015-05-06 13:40:21 -0700 | [diff] [blame] | 242 | |
Brian Salomon | 92aee3d | 2016-12-21 09:20:25 -0500 | [diff] [blame] | 243 | blend(f*Sca, Dca, f*Sa, Da) == f * blend(Sca, Dca, Sa, Da) + (1-f) * Dca |
cdalton | 8917d62 | 2015-05-06 13:40:21 -0700 | [diff] [blame] | 244 | |
Brian Salomon | 92aee3d | 2016-12-21 09:20:25 -0500 | [diff] [blame] | 245 | General case (f,Sa,Da != 0): |
cdalton | 8917d62 | 2015-05-06 13:40:21 -0700 | [diff] [blame] | 246 | |
Brian Salomon | 92aee3d | 2016-12-21 09:20:25 -0500 | [diff] [blame] | 247 | f * blend(Sca, Dca, Sa, Da) + (1-f) * Dca |
| 248 | = f * (B(Sca/Sa, Dca/Da) * Sa * Da + Sca * (1-Da) + Dca * (1-Sa)) + (1-f) * Dca [Sa,Da != |
| 249 | 0, definition of blend()] |
| 250 | = B(Sca/Sa, Dca/Da) * f*Sa * Da + f*Sca * (1-Da) + f*Dca * (1-Sa) + Dca - f*Dca |
| 251 | = B(Sca/Sa, Dca/Da) * f*Sa * Da + f*Sca - f*Sca * Da + f*Dca - f*Dca * Sa + Dca - f*Dca |
| 252 | = B(Sca/Sa, Dca/Da) * f*Sa * Da + f*Sca - f*Sca * Da - f*Dca * Sa + Dca |
| 253 | = B(Sca/Sa, Dca/Da) * f*Sa * Da + f*Sca * (1-Da) - f*Dca * Sa + Dca |
| 254 | = B(Sca/Sa, Dca/Da) * f*Sa * Da + f*Sca * (1-Da) + Dca * (1 - f*Sa) |
| 255 | = B(f*Sca/f*Sa, Dca/Da) * f*Sa * Da + f*Sca * (1-Da) + Dca * (1 - f*Sa) [f!=0] |
| 256 | = blend(f*Sca, Dca, f*Sa, Da) [definition of blend()] |
cdalton | 8917d62 | 2015-05-06 13:40:21 -0700 | [diff] [blame] | 257 | |
Brian Salomon | 92aee3d | 2016-12-21 09:20:25 -0500 | [diff] [blame] | 258 | Corner cases (Sa=0, Da=0, and f=0): |
cdalton | 8917d62 | 2015-05-06 13:40:21 -0700 | [diff] [blame] | 259 | |
Brian Salomon | 92aee3d | 2016-12-21 09:20:25 -0500 | [diff] [blame] | 260 | Sa=0: f * blend(Sca, Dca, Sa, Da) + (1-f) * Dca |
| 261 | = f * Dca + (1-f) * Dca [Sa=0, definition of blend()] |
| 262 | = Dca |
| 263 | = blend(0, Dca, 0, Da) [definition of blend()] |
| 264 | = blend(f*Sca, Dca, f*Sa, Da) [Sa=0] |
cdalton | 8917d62 | 2015-05-06 13:40:21 -0700 | [diff] [blame] | 265 | |
Brian Salomon | 92aee3d | 2016-12-21 09:20:25 -0500 | [diff] [blame] | 266 | Da=0: f * blend(Sca, Dca, Sa, Da) + (1-f) * Dca |
| 267 | = f * Sca + (1-f) * Dca [Da=0, definition of blend()] |
| 268 | = f * Sca [Da=0] |
| 269 | = blend(f*Sca, 0, f*Sa, 0) [definition of blend()] |
| 270 | = blend(f*Sca, Dca, f*Sa, Da) [Da=0] |
cdalton | 8917d62 | 2015-05-06 13:40:21 -0700 | [diff] [blame] | 271 | |
Brian Salomon | 92aee3d | 2016-12-21 09:20:25 -0500 | [diff] [blame] | 272 | f=0: f * blend(Sca, Dca, Sa, Da) + (1-f) * Dca |
| 273 | = Dca [f=0] |
| 274 | = blend(0, Dca, 0, Da) [definition of blend()] |
| 275 | = blend(f*Sca, Dca, f*Sa, Da) [f=0] |
cdalton | 8917d62 | 2015-05-06 13:40:21 -0700 | [diff] [blame] | 276 | |
Brian Salomon | 92aee3d | 2016-12-21 09:20:25 -0500 | [diff] [blame] | 277 | == Alpha == |
cdalton | 8917d62 | 2015-05-06 13:40:21 -0700 | [diff] [blame] | 278 | |
Brian Salomon | 92aee3d | 2016-12-21 09:20:25 -0500 | [diff] [blame] | 279 | We substitute X=Y=Z=1 and define a blend() function that calculates Da': |
cdalton | 8917d62 | 2015-05-06 13:40:21 -0700 | [diff] [blame] | 280 | |
Brian Salomon | 92aee3d | 2016-12-21 09:20:25 -0500 | [diff] [blame] | 281 | blend(Sa, Da) = Sa * Da + Sa * (1-Da) + Da * (1-Sa) |
| 282 | = Sa * Da + Sa - Sa * Da + Da - Da * Sa |
| 283 | = Sa + Da - Sa * Da |
cdalton | 8917d62 | 2015-05-06 13:40:21 -0700 | [diff] [blame] | 284 | |
Brian Salomon | 92aee3d | 2016-12-21 09:20:25 -0500 | [diff] [blame] | 285 | We use the same model for coverage modulation as we did with color: |
cdalton | 8917d62 | 2015-05-06 13:40:21 -0700 | [diff] [blame] | 286 | |
Brian Salomon | 92aee3d | 2016-12-21 09:20:25 -0500 | [diff] [blame] | 287 | Da'' = f * blend(Sa, Da) + (1-f) * Da |
cdalton | 8917d62 | 2015-05-06 13:40:21 -0700 | [diff] [blame] | 288 | |
Brian Salomon | 92aee3d | 2016-12-21 09:20:25 -0500 | [diff] [blame] | 289 | And show that canTweakAlphaForCoverage() is true by proving the following |
| 290 | relationship: |
cdalton | 8917d62 | 2015-05-06 13:40:21 -0700 | [diff] [blame] | 291 | |
Brian Salomon | 92aee3d | 2016-12-21 09:20:25 -0500 | [diff] [blame] | 292 | blend(f*Sa, Da) == f * blend(Sa, Da) + (1-f) * Da |
cdalton | 8917d62 | 2015-05-06 13:40:21 -0700 | [diff] [blame] | 293 | |
| 294 | |
Brian Salomon | 92aee3d | 2016-12-21 09:20:25 -0500 | [diff] [blame] | 295 | f * blend(Sa, Da) + (1-f) * Da |
| 296 | = f * (Sa + Da - Sa * Da) + (1-f) * Da |
| 297 | = f*Sa + f*Da - f*Sa * Da + Da - f*Da |
| 298 | = f*Sa - f*Sa * Da + Da |
| 299 | = f*Sa + Da - f*Sa * Da |
| 300 | = blend(f*Sa, Da) |
| 301 | */ |
cdalton | 8917d62 | 2015-05-06 13:40:21 -0700 | [diff] [blame] | 302 | |
bsalomon | 7765a47 | 2015-07-08 11:26:37 -0700 | [diff] [blame] | 303 | OptFlags flags = kNone_OptFlags; |
Brian Salomon | 92aee3d | 2016-12-21 09:20:25 -0500 | [diff] [blame] | 304 | if (analysis.fColorPOI.allStagesMultiplyInput()) { |
cdalton | 3211770 | 2015-05-11 11:21:23 -0700 | [diff] [blame] | 305 | flags |= kCanTweakAlphaForCoverage_OptFlag; |
cdalton | 8917d62 | 2015-05-06 13:40:21 -0700 | [diff] [blame] | 306 | } |
cdalton | 8917d62 | 2015-05-06 13:40:21 -0700 | [diff] [blame] | 307 | return flags; |
| 308 | } |
| 309 | |
bsalomon | cb02b38 | 2015-08-12 11:14:50 -0700 | [diff] [blame] | 310 | GrXferBarrierType CustomXP::onXferBarrier(const GrRenderTarget* rt, const GrCaps& caps) const { |
cdalton | 8917d62 | 2015-05-06 13:40:21 -0700 | [diff] [blame] | 311 | if (this->hasHWBlendEquation() && !caps.advancedCoherentBlendEquationSupport()) { |
bsalomon | cb02b38 | 2015-08-12 11:14:50 -0700 | [diff] [blame] | 312 | return kBlend_GrXferBarrierType; |
cdalton | 8917d62 | 2015-05-06 13:40:21 -0700 | [diff] [blame] | 313 | } |
bsalomon | cb02b38 | 2015-08-12 11:14:50 -0700 | [diff] [blame] | 314 | return kNone_GrXferBarrierType; |
cdalton | 8917d62 | 2015-05-06 13:40:21 -0700 | [diff] [blame] | 315 | } |
| 316 | |
| 317 | void CustomXP::onGetBlendInfo(BlendInfo* blendInfo) const { |
| 318 | if (this->hasHWBlendEquation()) { |
| 319 | blendInfo->fEquation = this->hwBlendEquation(); |
| 320 | } |
egdaniel | 54f0e9d | 2015-01-16 06:29:47 -0800 | [diff] [blame] | 321 | } |
| 322 | |
| 323 | /////////////////////////////////////////////////////////////////////////////// |
Brian Salomon | a163392 | 2017-01-09 11:46:10 -0500 | [diff] [blame] | 324 | |
| 325 | // See the comment above GrXPFactory's definition about this warning suppression. |
| 326 | #if defined(__GNUC__) || defined(__clang) |
| 327 | #pragma GCC diagnostic push |
| 328 | #pragma GCC diagnostic ignored "-Wnon-virtual-dtor" |
| 329 | #endif |
bsalomon | ae4738f | 2015-09-15 15:33:27 -0700 | [diff] [blame] | 330 | class CustomXPFactory : public GrXPFactory { |
| 331 | public: |
Brian Salomon | a163392 | 2017-01-09 11:46:10 -0500 | [diff] [blame] | 332 | constexpr CustomXPFactory(SkBlendMode mode) |
| 333 | : fMode(mode), fHWBlendEquation(hw_blend_equation(mode)) {} |
egdaniel | 54f0e9d | 2015-01-16 06:29:47 -0800 | [diff] [blame] | 334 | |
bsalomon | ae4738f | 2015-09-15 15:33:27 -0700 | [diff] [blame] | 335 | void getInvariantBlendedColor(const GrProcOptInfo& colorPOI, |
| 336 | GrXPFactory::InvariantBlendedColor*) const override; |
| 337 | |
| 338 | private: |
| 339 | GrXferProcessor* onCreateXferProcessor(const GrCaps& caps, |
Brian Salomon | 92aee3d | 2016-12-21 09:20:25 -0500 | [diff] [blame] | 340 | const GrPipelineAnalysis&, |
bsalomon | ae4738f | 2015-09-15 15:33:27 -0700 | [diff] [blame] | 341 | bool hasMixedSamples, |
| 342 | const DstTexture*) const override; |
| 343 | |
Brian Salomon | 5be6c95 | 2017-01-20 19:06:29 +0000 | [diff] [blame] | 344 | bool willReadDstColor(const GrCaps&, ColorType, CoverageType) const override; |
bsalomon | ae4738f | 2015-09-15 15:33:27 -0700 | [diff] [blame] | 345 | |
| 346 | GR_DECLARE_XP_FACTORY_TEST; |
| 347 | |
Mike Reed | 7d954ad | 2016-10-28 15:42:34 -0400 | [diff] [blame] | 348 | SkBlendMode fMode; |
| 349 | GrBlendEquation fHWBlendEquation; |
bsalomon | ae4738f | 2015-09-15 15:33:27 -0700 | [diff] [blame] | 350 | |
| 351 | typedef GrXPFactory INHERITED; |
| 352 | }; |
Brian Salomon | a163392 | 2017-01-09 11:46:10 -0500 | [diff] [blame] | 353 | #if defined(__GNUC__) || defined(__clang) |
| 354 | #pragma GCC diagnostic pop |
| 355 | #endif |
egdaniel | 54f0e9d | 2015-01-16 06:29:47 -0800 | [diff] [blame] | 356 | |
bsalomon | ae4738f | 2015-09-15 15:33:27 -0700 | [diff] [blame] | 357 | GrXferProcessor* CustomXPFactory::onCreateXferProcessor(const GrCaps& caps, |
Brian Salomon | 92aee3d | 2016-12-21 09:20:25 -0500 | [diff] [blame] | 358 | const GrPipelineAnalysis& analysis, |
bsalomon | ae4738f | 2015-09-15 15:33:27 -0700 | [diff] [blame] | 359 | bool hasMixedSamples, |
| 360 | const DstTexture* dstTexture) const { |
Brian Salomon | a163392 | 2017-01-09 11:46:10 -0500 | [diff] [blame] | 361 | SkASSERT(GrCustomXfermode::IsSupportedMode(fMode)); |
Brian Salomon | 5be6c95 | 2017-01-20 19:06:29 +0000 | [diff] [blame] | 362 | if (can_use_hw_blend_equation(fHWBlendEquation, analysis.fUsesPLSDstRead, |
| 363 | analysis.fCoveragePOI.isLCDCoverage(), caps)) { |
cdalton | f0df189 | 2015-06-05 13:26:20 -0700 | [diff] [blame] | 364 | SkASSERT(!dstTexture || !dstTexture->texture()); |
halcanary | 385fe4d | 2015-08-26 13:07:48 -0700 | [diff] [blame] | 365 | return new CustomXP(fMode, fHWBlendEquation); |
cdalton | f0df189 | 2015-06-05 13:26:20 -0700 | [diff] [blame] | 366 | } |
halcanary | 385fe4d | 2015-08-26 13:07:48 -0700 | [diff] [blame] | 367 | return new CustomXP(dstTexture, hasMixedSamples, fMode); |
egdaniel | 41d4f09 | 2015-02-09 07:51:00 -0800 | [diff] [blame] | 368 | } |
| 369 | |
Brian Salomon | 5be6c95 | 2017-01-20 19:06:29 +0000 | [diff] [blame] | 370 | bool CustomXPFactory::willReadDstColor(const GrCaps& caps, ColorType colorType, |
| 371 | CoverageType coverageType) const { |
| 372 | // This should not be called if we're using PLS dst read. |
| 373 | static constexpr bool kUsesPLSRead = false; |
| 374 | return !can_use_hw_blend_equation(fHWBlendEquation, kUsesPLSRead, |
| 375 | CoverageType::kLCD == coverageType, caps); |
cdalton | 8917d62 | 2015-05-06 13:40:21 -0700 | [diff] [blame] | 376 | } |
egdaniel | 41d4f09 | 2015-02-09 07:51:00 -0800 | [diff] [blame] | 377 | |
bsalomon | ae4738f | 2015-09-15 15:33:27 -0700 | [diff] [blame] | 378 | void CustomXPFactory::getInvariantBlendedColor(const GrProcOptInfo& colorPOI, |
| 379 | InvariantBlendedColor* blendedColor) const { |
cdalton | 1fa4572 | 2015-06-02 10:43:39 -0700 | [diff] [blame] | 380 | blendedColor->fWillBlendWithDst = true; |
| 381 | blendedColor->fKnownColorFlags = kNone_GrColorComponentFlags; |
egdaniel | 54f0e9d | 2015-01-16 06:29:47 -0800 | [diff] [blame] | 382 | } |
| 383 | |
bsalomon | ae4738f | 2015-09-15 15:33:27 -0700 | [diff] [blame] | 384 | GR_DEFINE_XP_FACTORY_TEST(CustomXPFactory); |
Hal Canary | 6f6961e | 2017-01-31 13:50:44 -0500 | [diff] [blame^] | 385 | #if GR_TEST_UTILS |
Brian Salomon | a163392 | 2017-01-09 11:46:10 -0500 | [diff] [blame] | 386 | const GrXPFactory* CustomXPFactory::TestGet(GrProcessorTestData* d) { |
Mike Reed | d470673 | 2016-11-15 16:44:34 -0500 | [diff] [blame] | 387 | int mode = d->fRandom->nextRangeU((int)SkBlendMode::kLastCoeffMode + 1, |
| 388 | (int)SkBlendMode::kLastSeparableMode); |
egdaniel | 54f0e9d | 2015-01-16 06:29:47 -0800 | [diff] [blame] | 389 | |
Brian Salomon | a163392 | 2017-01-09 11:46:10 -0500 | [diff] [blame] | 390 | return GrCustomXfermode::Get((SkBlendMode)mode); |
egdaniel | 0063a9b | 2015-01-15 10:52:32 -0800 | [diff] [blame] | 391 | } |
Hal Canary | 6f6961e | 2017-01-31 13:50:44 -0500 | [diff] [blame^] | 392 | #endif |
egdaniel | 0063a9b | 2015-01-15 10:52:32 -0800 | [diff] [blame] | 393 | |
bsalomon | ae4738f | 2015-09-15 15:33:27 -0700 | [diff] [blame] | 394 | /////////////////////////////////////////////////////////////////////////////// |
| 395 | |
Brian Salomon | a163392 | 2017-01-09 11:46:10 -0500 | [diff] [blame] | 396 | const GrXPFactory* GrCustomXfermode::Get(SkBlendMode mode) { |
| 397 | // If these objects are constructed as static constexpr by cl.exe (2015 SP2) the vtables are |
| 398 | // null. |
| 399 | #ifdef SK_BUILD_FOR_WIN |
| 400 | #define _CONSTEXPR_ |
| 401 | #else |
| 402 | #define _CONSTEXPR_ constexpr |
| 403 | #endif |
| 404 | static _CONSTEXPR_ const CustomXPFactory gOverlay(SkBlendMode::kOverlay); |
| 405 | static _CONSTEXPR_ const CustomXPFactory gDarken(SkBlendMode::kDarken); |
| 406 | static _CONSTEXPR_ const CustomXPFactory gLighten(SkBlendMode::kLighten); |
| 407 | static _CONSTEXPR_ const CustomXPFactory gColorDodge(SkBlendMode::kColorDodge); |
| 408 | static _CONSTEXPR_ const CustomXPFactory gColorBurn(SkBlendMode::kColorBurn); |
| 409 | static _CONSTEXPR_ const CustomXPFactory gHardLight(SkBlendMode::kHardLight); |
| 410 | static _CONSTEXPR_ const CustomXPFactory gSoftLight(SkBlendMode::kSoftLight); |
| 411 | static _CONSTEXPR_ const CustomXPFactory gDifference(SkBlendMode::kDifference); |
| 412 | static _CONSTEXPR_ const CustomXPFactory gExclusion(SkBlendMode::kExclusion); |
| 413 | static _CONSTEXPR_ const CustomXPFactory gMultiply(SkBlendMode::kMultiply); |
| 414 | static _CONSTEXPR_ const CustomXPFactory gHue(SkBlendMode::kHue); |
| 415 | static _CONSTEXPR_ const CustomXPFactory gSaturation(SkBlendMode::kSaturation); |
| 416 | static _CONSTEXPR_ const CustomXPFactory gColor(SkBlendMode::kColor); |
| 417 | static _CONSTEXPR_ const CustomXPFactory gLuminosity(SkBlendMode::kLuminosity); |
| 418 | #undef _CONSTEXPR_ |
Brian Salomon | c747bb6 | 2017-01-06 16:17:50 -0500 | [diff] [blame] | 419 | switch (mode) { |
| 420 | case SkBlendMode::kOverlay: |
Brian Salomon | a163392 | 2017-01-09 11:46:10 -0500 | [diff] [blame] | 421 | return &gOverlay; |
Brian Salomon | c747bb6 | 2017-01-06 16:17:50 -0500 | [diff] [blame] | 422 | case SkBlendMode::kDarken: |
Brian Salomon | a163392 | 2017-01-09 11:46:10 -0500 | [diff] [blame] | 423 | return &gDarken; |
Brian Salomon | c747bb6 | 2017-01-06 16:17:50 -0500 | [diff] [blame] | 424 | case SkBlendMode::kLighten: |
Brian Salomon | a163392 | 2017-01-09 11:46:10 -0500 | [diff] [blame] | 425 | return &gLighten; |
Brian Salomon | c747bb6 | 2017-01-06 16:17:50 -0500 | [diff] [blame] | 426 | case SkBlendMode::kColorDodge: |
Brian Salomon | a163392 | 2017-01-09 11:46:10 -0500 | [diff] [blame] | 427 | return &gColorDodge; |
Brian Salomon | c747bb6 | 2017-01-06 16:17:50 -0500 | [diff] [blame] | 428 | case SkBlendMode::kColorBurn: |
Brian Salomon | a163392 | 2017-01-09 11:46:10 -0500 | [diff] [blame] | 429 | return &gColorBurn; |
Brian Salomon | c747bb6 | 2017-01-06 16:17:50 -0500 | [diff] [blame] | 430 | case SkBlendMode::kHardLight: |
Brian Salomon | a163392 | 2017-01-09 11:46:10 -0500 | [diff] [blame] | 431 | return &gHardLight; |
Brian Salomon | c747bb6 | 2017-01-06 16:17:50 -0500 | [diff] [blame] | 432 | case SkBlendMode::kSoftLight: |
Brian Salomon | a163392 | 2017-01-09 11:46:10 -0500 | [diff] [blame] | 433 | return &gSoftLight; |
Brian Salomon | c747bb6 | 2017-01-06 16:17:50 -0500 | [diff] [blame] | 434 | case SkBlendMode::kDifference: |
Brian Salomon | a163392 | 2017-01-09 11:46:10 -0500 | [diff] [blame] | 435 | return &gDifference; |
Brian Salomon | c747bb6 | 2017-01-06 16:17:50 -0500 | [diff] [blame] | 436 | case SkBlendMode::kExclusion: |
Brian Salomon | a163392 | 2017-01-09 11:46:10 -0500 | [diff] [blame] | 437 | return &gExclusion; |
Brian Salomon | c747bb6 | 2017-01-06 16:17:50 -0500 | [diff] [blame] | 438 | case SkBlendMode::kMultiply: |
Brian Salomon | a163392 | 2017-01-09 11:46:10 -0500 | [diff] [blame] | 439 | return &gMultiply; |
Brian Salomon | c747bb6 | 2017-01-06 16:17:50 -0500 | [diff] [blame] | 440 | case SkBlendMode::kHue: |
Brian Salomon | a163392 | 2017-01-09 11:46:10 -0500 | [diff] [blame] | 441 | return &gHue; |
Brian Salomon | c747bb6 | 2017-01-06 16:17:50 -0500 | [diff] [blame] | 442 | case SkBlendMode::kSaturation: |
Brian Salomon | a163392 | 2017-01-09 11:46:10 -0500 | [diff] [blame] | 443 | return &gSaturation; |
Brian Salomon | c747bb6 | 2017-01-06 16:17:50 -0500 | [diff] [blame] | 444 | case SkBlendMode::kColor: |
Brian Salomon | a163392 | 2017-01-09 11:46:10 -0500 | [diff] [blame] | 445 | return &gColor; |
Brian Salomon | c747bb6 | 2017-01-06 16:17:50 -0500 | [diff] [blame] | 446 | case SkBlendMode::kLuminosity: |
Brian Salomon | a163392 | 2017-01-09 11:46:10 -0500 | [diff] [blame] | 447 | return &gLuminosity; |
Brian Salomon | c747bb6 | 2017-01-06 16:17:50 -0500 | [diff] [blame] | 448 | default: |
| 449 | SkASSERT(!GrCustomXfermode::IsSupportedMode(mode)); |
| 450 | return nullptr; |
bsalomon | ae4738f | 2015-09-15 15:33:27 -0700 | [diff] [blame] | 451 | } |
| 452 | } |