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