blob: 7b78305bb1e014d8a8d5ca2597ff00c942ac884a [file] [log] [blame]
commit-bot@chromium.orgc3fe5492014-01-30 18:15:51 +00001/*
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
8#include "GrConvexPolyEffect.h"
egdaniel605dd0f2014-11-12 08:35:25 -08009#include "GrInvariantOutput.h"
reed026beb52015-06-10 14:23:15 -070010#include "SkPathPriv.h"
bsalomon7888de02016-03-28 15:04:45 -070011#include "effects/GrConstColorProcessor.h"
egdaniel64c47282015-11-13 06:54:19 -080012#include "glsl/GrGLSLFragmentProcessor.h"
egdaniel2d721d32015-11-11 13:06:05 -080013#include "glsl/GrGLSLFragmentShaderBuilder.h"
egdaniel018fb622015-10-28 07:26:40 -070014#include "glsl/GrGLSLProgramDataManager.h"
egdaniel7ea439b2015-12-03 09:20:44 -080015#include "glsl/GrGLSLUniformHandler.h"
commit-bot@chromium.orgc3fe5492014-01-30 18:15:51 +000016
commit-bot@chromium.orgf0539802014-02-08 19:31:05 +000017//////////////////////////////////////////////////////////////////////////////
joshualittb0a8a372014-09-23 09:50:21 -070018class AARectEffect : public GrFragmentProcessor {
commit-bot@chromium.orgf0539802014-02-08 19:31:05 +000019public:
commit-bot@chromium.orgf0539802014-02-08 19:31:05 +000020 const SkRect& getRect() const { return fRect; }
21
joshualittb0a8a372014-09-23 09:50:21 -070022 static GrFragmentProcessor* Create(GrPrimitiveEdgeType edgeType, const SkRect& rect) {
halcanary385fe4d2015-08-26 13:07:48 -070023 return new AARectEffect(edgeType, rect);
commit-bot@chromium.orgf0539802014-02-08 19:31:05 +000024 }
25
joshualittb0a8a372014-09-23 09:50:21 -070026 GrPrimitiveEdgeType getEdgeType() const { return fEdgeType; }
commit-bot@chromium.orgd85f32c2014-02-28 14:43:26 +000027
mtklein36352bf2015-03-25 18:17:31 -070028 const char* name() const override { return "AARect"; }
joshualitteb2a6762014-12-04 11:35:33 -080029
egdaniel57d3b032015-11-13 11:57:27 -080030 void onGetGLSLProcessorKey(const GrGLSLCaps&, GrProcessorKeyBuilder*) const override;
joshualitteb2a6762014-12-04 11:35:33 -080031
commit-bot@chromium.orgf0539802014-02-08 19:31:05 +000032private:
joshualitteb2a6762014-12-04 11:35:33 -080033 AARectEffect(GrPrimitiveEdgeType edgeType, const SkRect& rect)
34 : fRect(rect), fEdgeType(edgeType) {
35 this->initClassID<AARectEffect>();
commit-bot@chromium.orgf0539802014-02-08 19:31:05 +000036 this->setWillReadFragmentPosition();
37 }
38
egdaniel57d3b032015-11-13 11:57:27 -080039 GrGLSLFragmentProcessor* onCreateGLSLInstance() const override;
wangyixb1daa862015-08-18 11:29:31 -070040
mtklein36352bf2015-03-25 18:17:31 -070041 bool onIsEqual(const GrFragmentProcessor& other) const override {
joshualitt49586be2014-09-16 08:21:41 -070042 const AARectEffect& aare = other.cast<AARectEffect>();
commit-bot@chromium.orgf0539802014-02-08 19:31:05 +000043 return fRect == aare.fRect;
44 }
45
mtklein36352bf2015-03-25 18:17:31 -070046 void onComputeInvariantOutput(GrInvariantOutput* inout) const override {
egdaniel1a8ecdf2014-10-03 06:24:12 -070047 if (fRect.isEmpty()) {
48 // An empty rect will have no coverage anywhere.
joshualitt56995b52014-12-11 15:44:02 -080049 inout->mulByKnownSingleComponent(0);
egdaniel1a8ecdf2014-10-03 06:24:12 -070050 } else {
joshualitt56995b52014-12-11 15:44:02 -080051 inout->mulByUnknownSingleComponent();
egdaniel1a8ecdf2014-10-03 06:24:12 -070052 }
egdaniel1a8ecdf2014-10-03 06:24:12 -070053 }
54
joshualittb0a8a372014-09-23 09:50:21 -070055 SkRect fRect;
56 GrPrimitiveEdgeType fEdgeType;
commit-bot@chromium.orgd85f32c2014-02-28 14:43:26 +000057
joshualittb0a8a372014-09-23 09:50:21 -070058 typedef GrFragmentProcessor INHERITED;
commit-bot@chromium.orgf0539802014-02-08 19:31:05 +000059
joshualittb0a8a372014-09-23 09:50:21 -070060 GR_DECLARE_FRAGMENT_PROCESSOR_TEST;
commit-bot@chromium.orgf0539802014-02-08 19:31:05 +000061
62};
63
joshualittb0a8a372014-09-23 09:50:21 -070064GR_DEFINE_FRAGMENT_PROCESSOR_TEST(AARectEffect);
commit-bot@chromium.orgf0539802014-02-08 19:31:05 +000065
bsalomonc21b09e2015-08-28 18:46:56 -070066const GrFragmentProcessor* AARectEffect::TestCreate(GrProcessorTestData* d) {
joshualitt0067ff52015-07-08 14:26:19 -070067 SkRect rect = SkRect::MakeLTRB(d->fRandom->nextSScalar1(),
68 d->fRandom->nextSScalar1(),
69 d->fRandom->nextSScalar1(),
70 d->fRandom->nextSScalar1());
joshualittb0a8a372014-09-23 09:50:21 -070071 GrFragmentProcessor* fp;
commit-bot@chromium.orgcabf4b22014-03-05 18:27:43 +000072 do {
joshualitt0067ff52015-07-08 14:26:19 -070073 GrPrimitiveEdgeType edgeType = static_cast<GrPrimitiveEdgeType>(
74 d->fRandom->nextULessThan(kGrProcessorEdgeTypeCnt));
commit-bot@chromium.orgcabf4b22014-03-05 18:27:43 +000075
joshualittb0a8a372014-09-23 09:50:21 -070076 fp = AARectEffect::Create(edgeType, rect);
halcanary96fcdcc2015-08-27 07:41:13 -070077 } while (nullptr == fp);
joshualittb0a8a372014-09-23 09:50:21 -070078 return fp;
commit-bot@chromium.orgf0539802014-02-08 19:31:05 +000079}
80
81//////////////////////////////////////////////////////////////////////////////
82
egdaniel64c47282015-11-13 06:54:19 -080083class GLAARectEffect : public GrGLSLFragmentProcessor {
commit-bot@chromium.orgf0539802014-02-08 19:31:05 +000084public:
robertphillips9cdb9922016-02-03 12:25:40 -080085 GLAARectEffect() {
86 fPrevRect.fLeft = SK_ScalarNaN;
87 }
commit-bot@chromium.orgf0539802014-02-08 19:31:05 +000088
robertphillips9cdb9922016-02-03 12:25:40 -080089 void emitCode(EmitArgs&) override;
commit-bot@chromium.orgf0539802014-02-08 19:31:05 +000090
jvanverthcfc18862015-04-28 08:48:20 -070091 static inline void GenKey(const GrProcessor&, const GrGLSLCaps&, GrProcessorKeyBuilder*);
commit-bot@chromium.orgf0539802014-02-08 19:31:05 +000092
wangyixb1daa862015-08-18 11:29:31 -070093protected:
egdaniel018fb622015-10-28 07:26:40 -070094 void onSetData(const GrGLSLProgramDataManager&, const GrProcessor&) override;
commit-bot@chromium.orgf0539802014-02-08 19:31:05 +000095
96private:
egdaniel018fb622015-10-28 07:26:40 -070097 GrGLSLProgramDataManager::UniformHandle fRectUniform;
robertphillipsbf536af2016-02-04 06:11:53 -080098 SkRect fPrevRect;
99
egdaniel64c47282015-11-13 06:54:19 -0800100 typedef GrGLSLFragmentProcessor INHERITED;
commit-bot@chromium.orgf0539802014-02-08 19:31:05 +0000101};
102
wangyix7c157a92015-07-22 15:08:53 -0700103void GLAARectEffect::emitCode(EmitArgs& args) {
104 const AARectEffect& aare = args.fFp.cast<AARectEffect>();
commit-bot@chromium.orgf0539802014-02-08 19:31:05 +0000105 const char *rectName;
commit-bot@chromium.orgd85f32c2014-02-28 14:43:26 +0000106 // The rect uniform's xyzw refer to (left + 0.5, top + 0.5, right - 0.5, bottom - 0.5),
107 // respectively.
cdalton5e58cee2016-02-11 12:49:47 -0800108 fRectUniform = args.fUniformHandler->addUniform(kFragment_GrShaderFlag,
egdaniel7ea439b2015-12-03 09:20:44 -0800109 kVec4f_GrSLType,
110 kDefault_GrSLPrecision,
111 "rect",
112 &rectName);
joshualitt30ba4362014-08-21 20:18:45 -0700113
cdalton85285412016-02-18 12:37:07 -0800114 GrGLSLFPFragmentBuilder* fragBuilder = args.fFragBuilder;
egdaniel4ca2e602015-11-18 08:01:26 -0800115 const char* fragmentPos = fragBuilder->fragmentPosition();
joshualittb0a8a372014-09-23 09:50:21 -0700116 if (GrProcessorEdgeTypeIsAA(aare.getEdgeType())) {
commit-bot@chromium.orgd85f32c2014-02-28 14:43:26 +0000117 // The amount of coverage removed in x and y by the edges is computed as a pair of negative
118 // numbers, xSub and ySub.
egdaniel4ca2e602015-11-18 08:01:26 -0800119 fragBuilder->codeAppend("\t\tfloat xSub, ySub;\n");
120 fragBuilder->codeAppendf("\t\txSub = min(%s.x - %s.x, 0.0);\n", fragmentPos, rectName);
121 fragBuilder->codeAppendf("\t\txSub += min(%s.z - %s.x, 0.0);\n", rectName, fragmentPos);
122 fragBuilder->codeAppendf("\t\tySub = min(%s.y - %s.y, 0.0);\n", fragmentPos, rectName);
123 fragBuilder->codeAppendf("\t\tySub += min(%s.w - %s.y, 0.0);\n", rectName, fragmentPos);
commit-bot@chromium.orgd85f32c2014-02-28 14:43:26 +0000124 // Now compute coverage in x and y and multiply them to get the fraction of the pixel
125 // covered.
egdaniel4ca2e602015-11-18 08:01:26 -0800126 fragBuilder->codeAppendf("\t\tfloat alpha = (1.0 + max(xSub, -1.0)) * (1.0 + max(ySub, -1.0));\n");
commit-bot@chromium.orgd85f32c2014-02-28 14:43:26 +0000127 } else {
egdaniel4ca2e602015-11-18 08:01:26 -0800128 fragBuilder->codeAppendf("\t\tfloat alpha = 1.0;\n");
129 fragBuilder->codeAppendf("\t\talpha *= (%s.x - %s.x) > -0.5 ? 1.0 : 0.0;\n", fragmentPos, rectName);
130 fragBuilder->codeAppendf("\t\talpha *= (%s.z - %s.x) > -0.5 ? 1.0 : 0.0;\n", rectName, fragmentPos);
131 fragBuilder->codeAppendf("\t\talpha *= (%s.y - %s.y) > -0.5 ? 1.0 : 0.0;\n", fragmentPos, rectName);
132 fragBuilder->codeAppendf("\t\talpha *= (%s.w - %s.y) > -0.5 ? 1.0 : 0.0;\n", rectName, fragmentPos);
commit-bot@chromium.orgd85f32c2014-02-28 14:43:26 +0000133 }
commit-bot@chromium.orgf0539802014-02-08 19:31:05 +0000134
joshualittb0a8a372014-09-23 09:50:21 -0700135 if (GrProcessorEdgeTypeIsInverseFill(aare.getEdgeType())) {
egdaniel4ca2e602015-11-18 08:01:26 -0800136 fragBuilder->codeAppend("\t\talpha = 1.0 - alpha;\n");
commit-bot@chromium.orgd85f32c2014-02-28 14:43:26 +0000137 }
egdaniel4ca2e602015-11-18 08:01:26 -0800138 fragBuilder->codeAppendf("\t\t%s = %s;\n", args.fOutputColor,
139 (GrGLSLExpr4(args.fInputColor) * GrGLSLExpr1("alpha")).c_str());
commit-bot@chromium.orgf0539802014-02-08 19:31:05 +0000140}
141
egdaniel018fb622015-10-28 07:26:40 -0700142void GLAARectEffect::onSetData(const GrGLSLProgramDataManager& pdman,
143 const GrProcessor& processor) {
joshualittb0a8a372014-09-23 09:50:21 -0700144 const AARectEffect& aare = processor.cast<AARectEffect>();
commit-bot@chromium.orgf0539802014-02-08 19:31:05 +0000145 const SkRect& rect = aare.getRect();
146 if (rect != fPrevRect) {
robertphillips7f14c9b2015-01-30 14:44:22 -0800147 pdman.set4f(fRectUniform, rect.fLeft + 0.5f, rect.fTop + 0.5f,
148 rect.fRight - 0.5f, rect.fBottom - 0.5f);
commit-bot@chromium.orgf0539802014-02-08 19:31:05 +0000149 fPrevRect = rect;
150 }
151}
152
jvanverthcfc18862015-04-28 08:48:20 -0700153void GLAARectEffect::GenKey(const GrProcessor& processor, const GrGLSLCaps&,
joshualittb0a8a372014-09-23 09:50:21 -0700154 GrProcessorKeyBuilder* b) {
155 const AARectEffect& aare = processor.cast<AARectEffect>();
bsalomon63e99f72014-07-21 08:03:14 -0700156 b->add32(aare.getEdgeType());
commit-bot@chromium.orgd85f32c2014-02-28 14:43:26 +0000157}
158
egdaniel57d3b032015-11-13 11:57:27 -0800159void AARectEffect::onGetGLSLProcessorKey(const GrGLSLCaps& caps, GrProcessorKeyBuilder* b) const {
joshualitteb2a6762014-12-04 11:35:33 -0800160 GLAARectEffect::GenKey(*this, caps, b);
161}
162
egdaniel57d3b032015-11-13 11:57:27 -0800163GrGLSLFragmentProcessor* AARectEffect::onCreateGLSLInstance() const {
robertphillips9cdb9922016-02-03 12:25:40 -0800164 return new GLAARectEffect;
commit-bot@chromium.orgf0539802014-02-08 19:31:05 +0000165}
166
167//////////////////////////////////////////////////////////////////////////////
168
egdaniel64c47282015-11-13 06:54:19 -0800169class GrGLConvexPolyEffect : public GrGLSLFragmentProcessor {
commit-bot@chromium.orgc3fe5492014-01-30 18:15:51 +0000170public:
robertphillips9cdb9922016-02-03 12:25:40 -0800171 GrGLConvexPolyEffect() {
172 fPrevEdges[0] = SK_ScalarNaN;
173 }
commit-bot@chromium.orgc3fe5492014-01-30 18:15:51 +0000174
robertphillips9cdb9922016-02-03 12:25:40 -0800175 void emitCode(EmitArgs&) override;
commit-bot@chromium.orgc3fe5492014-01-30 18:15:51 +0000176
jvanverthcfc18862015-04-28 08:48:20 -0700177 static inline void GenKey(const GrProcessor&, const GrGLSLCaps&, GrProcessorKeyBuilder*);
commit-bot@chromium.orgc3fe5492014-01-30 18:15:51 +0000178
wangyixb1daa862015-08-18 11:29:31 -0700179protected:
egdaniel018fb622015-10-28 07:26:40 -0700180 void onSetData(const GrGLSLProgramDataManager&, const GrProcessor&) override;
commit-bot@chromium.orgc3fe5492014-01-30 18:15:51 +0000181
182private:
egdaniel018fb622015-10-28 07:26:40 -0700183 GrGLSLProgramDataManager::UniformHandle fEdgeUniform;
robertphillipsbf536af2016-02-04 06:11:53 -0800184 SkScalar fPrevEdges[3 * GrConvexPolyEffect::kMaxEdges];
egdaniel64c47282015-11-13 06:54:19 -0800185 typedef GrGLSLFragmentProcessor INHERITED;
commit-bot@chromium.orgc3fe5492014-01-30 18:15:51 +0000186};
187
wangyix7c157a92015-07-22 15:08:53 -0700188void GrGLConvexPolyEffect::emitCode(EmitArgs& args) {
189 const GrConvexPolyEffect& cpe = args.fFp.cast<GrConvexPolyEffect>();
commit-bot@chromium.orgc3fe5492014-01-30 18:15:51 +0000190
191 const char *edgeArrayName;
cdalton5e58cee2016-02-11 12:49:47 -0800192 fEdgeUniform = args.fUniformHandler->addUniformArray(kFragment_GrShaderFlag,
egdaniel7ea439b2015-12-03 09:20:44 -0800193 kVec3f_GrSLType,
194 kDefault_GrSLPrecision,
195 "edges",
196 cpe.getEdgeCount(),
197 &edgeArrayName);
cdalton85285412016-02-18 12:37:07 -0800198 GrGLSLFPFragmentBuilder* fragBuilder = args.fFragBuilder;
egdaniel4ca2e602015-11-18 08:01:26 -0800199 fragBuilder->codeAppend("\t\tfloat alpha = 1.0;\n");
200 fragBuilder->codeAppend("\t\tfloat edge;\n");
201 const char* fragmentPos = fragBuilder->fragmentPosition();
commit-bot@chromium.orgc3fe5492014-01-30 18:15:51 +0000202 for (int i = 0; i < cpe.getEdgeCount(); ++i) {
egdaniel4ca2e602015-11-18 08:01:26 -0800203 fragBuilder->codeAppendf("\t\tedge = dot(%s[%d], vec3(%s.x, %s.y, 1));\n",
204 edgeArrayName, i, fragmentPos, fragmentPos);
joshualittb0a8a372014-09-23 09:50:21 -0700205 if (GrProcessorEdgeTypeIsAA(cpe.getEdgeType())) {
egdaniel4ca2e602015-11-18 08:01:26 -0800206 fragBuilder->codeAppend("\t\tedge = clamp(edge, 0.0, 1.0);\n");
commit-bot@chromium.orgcabf4b22014-03-05 18:27:43 +0000207 } else {
egdaniel4ca2e602015-11-18 08:01:26 -0800208 fragBuilder->codeAppend("\t\tedge = edge >= 0.5 ? 1.0 : 0.0;\n");
commit-bot@chromium.orgc3fe5492014-01-30 18:15:51 +0000209 }
egdaniel4ca2e602015-11-18 08:01:26 -0800210 fragBuilder->codeAppend("\t\talpha *= edge;\n");
commit-bot@chromium.orgc3fe5492014-01-30 18:15:51 +0000211 }
212
joshualittb0a8a372014-09-23 09:50:21 -0700213 if (GrProcessorEdgeTypeIsInverseFill(cpe.getEdgeType())) {
egdaniel4ca2e602015-11-18 08:01:26 -0800214 fragBuilder->codeAppend("\talpha = 1.0 - alpha;\n");
commit-bot@chromium.orgd85f32c2014-02-28 14:43:26 +0000215 }
egdaniel4ca2e602015-11-18 08:01:26 -0800216 fragBuilder->codeAppendf("\t%s = %s;\n", args.fOutputColor,
217 (GrGLSLExpr4(args.fInputColor) * GrGLSLExpr1("alpha")).c_str());
commit-bot@chromium.orgc3fe5492014-01-30 18:15:51 +0000218}
219
egdaniel018fb622015-10-28 07:26:40 -0700220void GrGLConvexPolyEffect::onSetData(const GrGLSLProgramDataManager& pdman,
221 const GrProcessor& effect) {
joshualitt49586be2014-09-16 08:21:41 -0700222 const GrConvexPolyEffect& cpe = effect.cast<GrConvexPolyEffect>();
commit-bot@chromium.orgc3fe5492014-01-30 18:15:51 +0000223 size_t byteSize = 3 * cpe.getEdgeCount() * sizeof(SkScalar);
224 if (0 != memcmp(fPrevEdges, cpe.getEdges(), byteSize)) {
kkinnunen7510b222014-07-30 00:04:16 -0700225 pdman.set3fv(fEdgeUniform, cpe.getEdgeCount(), cpe.getEdges());
commit-bot@chromium.orgc3fe5492014-01-30 18:15:51 +0000226 memcpy(fPrevEdges, cpe.getEdges(), byteSize);
227 }
228}
229
jvanverthcfc18862015-04-28 08:48:20 -0700230void GrGLConvexPolyEffect::GenKey(const GrProcessor& processor, const GrGLSLCaps&,
joshualittb0a8a372014-09-23 09:50:21 -0700231 GrProcessorKeyBuilder* b) {
232 const GrConvexPolyEffect& cpe = processor.cast<GrConvexPolyEffect>();
233 GR_STATIC_ASSERT(kGrProcessorEdgeTypeCnt <= 8);
bsalomon63e99f72014-07-21 08:03:14 -0700234 uint32_t key = (cpe.getEdgeCount() << 3) | cpe.getEdgeType();
235 b->add32(key);
commit-bot@chromium.orgc3fe5492014-01-30 18:15:51 +0000236}
237
238//////////////////////////////////////////////////////////////////////////////
239
joshualittb0a8a372014-09-23 09:50:21 -0700240GrFragmentProcessor* GrConvexPolyEffect::Create(GrPrimitiveEdgeType type, const SkPath& path,
241 const SkVector* offset) {
242 if (kHairlineAA_GrProcessorEdgeType == type) {
halcanary96fcdcc2015-08-27 07:41:13 -0700243 return nullptr;
commit-bot@chromium.orgcabf4b22014-03-05 18:27:43 +0000244 }
commit-bot@chromium.orgc3fe5492014-01-30 18:15:51 +0000245 if (path.getSegmentMasks() != SkPath::kLine_SegmentMask ||
commit-bot@chromium.orgcabf4b22014-03-05 18:27:43 +0000246 !path.isConvex()) {
halcanary96fcdcc2015-08-27 07:41:13 -0700247 return nullptr;
commit-bot@chromium.orgc3fe5492014-01-30 18:15:51 +0000248 }
249
250 if (path.countPoints() > kMaxEdges) {
halcanary96fcdcc2015-08-27 07:41:13 -0700251 return nullptr;
commit-bot@chromium.orgc3fe5492014-01-30 18:15:51 +0000252 }
253
254 SkPoint pts[kMaxEdges];
255 SkScalar edges[3 * kMaxEdges];
256
reed026beb52015-06-10 14:23:15 -0700257 SkPathPriv::FirstDirection dir;
bsalomon7888de02016-03-28 15:04:45 -0700258 // The only way this should fail is if the clip is effectively a infinitely thin line. In that
259 // case nothing is inside the clip. It'd be nice to detect this at a higher level and either
260 // skip the draw or omit the clip element.
261 if (!SkPathPriv::CheapComputeFirstDirection(path, &dir)) {
262 if (GrProcessorEdgeTypeIsInverseFill(type)) {
263 return GrConstColorProcessor::Create(0xFFFFFFFF,
264 GrConstColorProcessor::kModulateRGBA_InputMode);
265 }
266 return GrConstColorProcessor::Create(0, GrConstColorProcessor::kIgnore_InputMode);
267 }
commit-bot@chromium.orgc3fe5492014-01-30 18:15:51 +0000268
commit-bot@chromium.orgb21fac12014-02-07 21:13:11 +0000269 SkVector t;
halcanary96fcdcc2015-08-27 07:41:13 -0700270 if (nullptr == offset) {
commit-bot@chromium.orgb21fac12014-02-07 21:13:11 +0000271 t.set(0, 0);
272 } else {
273 t = *offset;
274 }
275
commit-bot@chromium.orgc3fe5492014-01-30 18:15:51 +0000276 int count = path.getPoints(pts, kMaxEdges);
277 int n = 0;
278 for (int lastPt = count - 1, i = 0; i < count; lastPt = i++) {
279 if (pts[lastPt] != pts[i]) {
280 SkVector v = pts[i] - pts[lastPt];
281 v.normalize();
reed026beb52015-06-10 14:23:15 -0700282 if (SkPathPriv::kCCW_FirstDirection == dir) {
commit-bot@chromium.orgc3fe5492014-01-30 18:15:51 +0000283 edges[3 * n] = v.fY;
284 edges[3 * n + 1] = -v.fX;
285 } else {
286 edges[3 * n] = -v.fY;
287 edges[3 * n + 1] = v.fX;
288 }
commit-bot@chromium.orgb21fac12014-02-07 21:13:11 +0000289 SkPoint p = pts[i] + t;
290 edges[3 * n + 2] = -(edges[3 * n] * p.fX + edges[3 * n + 1] * p.fY);
commit-bot@chromium.orgc3fe5492014-01-30 18:15:51 +0000291 ++n;
292 }
293 }
commit-bot@chromium.orgcabf4b22014-03-05 18:27:43 +0000294 if (path.isInverseFillType()) {
joshualittb0a8a372014-09-23 09:50:21 -0700295 type = GrInvertProcessorEdgeType(type);
commit-bot@chromium.orgcabf4b22014-03-05 18:27:43 +0000296 }
commit-bot@chromium.orgc3fe5492014-01-30 18:15:51 +0000297 return Create(type, n, edges);
298}
299
joshualittb0a8a372014-09-23 09:50:21 -0700300GrFragmentProcessor* GrConvexPolyEffect::Create(GrPrimitiveEdgeType edgeType, const SkRect& rect) {
301 if (kHairlineAA_GrProcessorEdgeType == edgeType){
halcanary96fcdcc2015-08-27 07:41:13 -0700302 return nullptr;
commit-bot@chromium.orgcabf4b22014-03-05 18:27:43 +0000303 }
commit-bot@chromium.orgd85f32c2014-02-28 14:43:26 +0000304 return AARectEffect::Create(edgeType, rect);
commit-bot@chromium.orgf0539802014-02-08 19:31:05 +0000305}
306
commit-bot@chromium.orgc3fe5492014-01-30 18:15:51 +0000307GrConvexPolyEffect::~GrConvexPolyEffect() {}
308
egdaniel605dd0f2014-11-12 08:35:25 -0800309void GrConvexPolyEffect::onComputeInvariantOutput(GrInvariantOutput* inout) const {
joshualitt56995b52014-12-11 15:44:02 -0800310 inout->mulByUnknownSingleComponent();
commit-bot@chromium.orgc3fe5492014-01-30 18:15:51 +0000311}
312
egdaniel57d3b032015-11-13 11:57:27 -0800313void GrConvexPolyEffect::onGetGLSLProcessorKey(const GrGLSLCaps& caps,
314 GrProcessorKeyBuilder* b) const {
joshualitteb2a6762014-12-04 11:35:33 -0800315 GrGLConvexPolyEffect::GenKey(*this, caps, b);
316}
317
egdaniel57d3b032015-11-13 11:57:27 -0800318GrGLSLFragmentProcessor* GrConvexPolyEffect::onCreateGLSLInstance() const {
robertphillips9cdb9922016-02-03 12:25:40 -0800319 return new GrGLConvexPolyEffect;
commit-bot@chromium.orgc3fe5492014-01-30 18:15:51 +0000320}
321
joshualittb0a8a372014-09-23 09:50:21 -0700322GrConvexPolyEffect::GrConvexPolyEffect(GrPrimitiveEdgeType edgeType, int n, const SkScalar edges[])
commit-bot@chromium.orgc3fe5492014-01-30 18:15:51 +0000323 : fEdgeType(edgeType)
324 , fEdgeCount(n) {
joshualitteb2a6762014-12-04 11:35:33 -0800325 this->initClassID<GrConvexPolyEffect>();
commit-bot@chromium.orgc3fe5492014-01-30 18:15:51 +0000326 // Factory function should have already ensured this.
327 SkASSERT(n <= kMaxEdges);
328 memcpy(fEdges, edges, 3 * n * sizeof(SkScalar));
329 // Outset the edges by 0.5 so that a pixel with center on an edge is 50% covered in the AA case
330 // and 100% covered in the non-AA case.
331 for (int i = 0; i < n; ++i) {
332 fEdges[3 * i + 2] += SK_ScalarHalf;
333 }
334 this->setWillReadFragmentPosition();
335}
336
bsalomon0e08fc12014-10-15 08:19:04 -0700337bool GrConvexPolyEffect::onIsEqual(const GrFragmentProcessor& other) const {
joshualitt49586be2014-09-16 08:21:41 -0700338 const GrConvexPolyEffect& cpe = other.cast<GrConvexPolyEffect>();
commit-bot@chromium.orgc3fe5492014-01-30 18:15:51 +0000339 // ignore the fact that 0 == -0 and just use memcmp.
340 return (cpe.fEdgeType == fEdgeType && cpe.fEdgeCount == fEdgeCount &&
341 0 == memcmp(cpe.fEdges, fEdges, 3 * fEdgeCount * sizeof(SkScalar)));
342}
343
344//////////////////////////////////////////////////////////////////////////////
345
joshualittb0a8a372014-09-23 09:50:21 -0700346GR_DEFINE_FRAGMENT_PROCESSOR_TEST(GrConvexPolyEffect);
commit-bot@chromium.orgc3fe5492014-01-30 18:15:51 +0000347
bsalomonc21b09e2015-08-28 18:46:56 -0700348const GrFragmentProcessor* GrConvexPolyEffect::TestCreate(GrProcessorTestData* d) {
joshualitt0067ff52015-07-08 14:26:19 -0700349 int count = d->fRandom->nextULessThan(kMaxEdges) + 1;
commit-bot@chromium.orgc3fe5492014-01-30 18:15:51 +0000350 SkScalar edges[kMaxEdges * 3];
351 for (int i = 0; i < 3 * count; ++i) {
joshualitt0067ff52015-07-08 14:26:19 -0700352 edges[i] = d->fRandom->nextSScalar1();
commit-bot@chromium.orgc3fe5492014-01-30 18:15:51 +0000353 }
354
joshualittb0a8a372014-09-23 09:50:21 -0700355 GrFragmentProcessor* fp;
commit-bot@chromium.orgcabf4b22014-03-05 18:27:43 +0000356 do {
joshualittb0a8a372014-09-23 09:50:21 -0700357 GrPrimitiveEdgeType edgeType = static_cast<GrPrimitiveEdgeType>(
joshualitt0067ff52015-07-08 14:26:19 -0700358 d->fRandom->nextULessThan(kGrProcessorEdgeTypeCnt));
joshualittb0a8a372014-09-23 09:50:21 -0700359 fp = GrConvexPolyEffect::Create(edgeType, count, edges);
halcanary96fcdcc2015-08-27 07:41:13 -0700360 } while (nullptr == fp);
joshualittb0a8a372014-09-23 09:50:21 -0700361 return fp;
commit-bot@chromium.orgc3fe5492014-01-30 18:15:51 +0000362}