blob: 020286fddbf6e8e0e6460495e304d6bd0cb6001a [file] [log] [blame]
commit-bot@chromium.org07e1c3f2013-08-22 20:41:15 +00001/*
2 * Copyright 2013 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#ifndef GrBezierEffect_DEFINED
skia.committer@gmail.com44a77c82013-08-23 07:01:29 +00009#define GrBezierEffect_DEFINED
commit-bot@chromium.org07e1c3f2013-08-22 20:41:15 +000010
commit-bot@chromium.org07e1c3f2013-08-22 20:41:15 +000011#include "GrDrawTargetCaps.h"
joshualittb0a8a372014-09-23 09:50:21 -070012#include "GrProcessor.h"
joshualitt249af152014-09-15 11:41:13 -070013#include "GrGeometryProcessor.h"
egdaniel605dd0f2014-11-12 08:35:25 -080014#include "GrInvariantOutput.h"
commit-bot@chromium.orgcabf4b22014-03-05 18:27:43 +000015#include "GrTypesPriv.h"
commit-bot@chromium.org07e1c3f2013-08-22 20:41:15 +000016
17/**
18 * Shader is based off of Loop-Blinn Quadratic GPU Rendering
19 * The output of this effect is a hairline edge for conics.
20 * Conics specified by implicit equation K^2 - LM.
21 * K, L, and M, are the first three values of the vertex attribute,
22 * the fourth value is not used. Distance is calculated using a
23 * first order approximation from the taylor series.
24 * Coverage for AA is max(0, 1-distance).
25 *
26 * Test were also run using a second order distance approximation.
27 * There were two versions of the second order approx. The first version
28 * is of roughly the form:
29 * f(q) = |f(p)| - ||f'(p)||*||q-p|| - ||f''(p)||*||q-p||^2.
30 * The second is similar:
31 * f(q) = |f(p)| + ||f'(p)||*||q-p|| + ||f''(p)||*||q-p||^2.
32 * The exact version of the equations can be found in the paper
33 * "Distance Approximations for Rasterizing Implicit Curves" by Gabriel Taubin
34 *
35 * In both versions we solve the quadratic for ||q-p||.
36 * Version 1:
37 * gFM is magnitude of first partials and gFM2 is magnitude of 2nd partials (as derived from paper)
38 * builder->fsCodeAppend("\t\tedgeAlpha = (sqrt(gFM*gFM+4.0*func*gF2M) - gFM)/(2.0*gF2M);\n");
39 * Version 2:
40 * builder->fsCodeAppend("\t\tedgeAlpha = (gFM - sqrt(gFM*gFM-4.0*func*gF2M))/(2.0*gF2M);\n");
41 *
42 * Also note that 2nd partials of k,l,m are zero
43 *
44 * When comparing the two second order approximations to the first order approximations,
45 * the following results were found. Version 1 tends to underestimate the distances, thus it
46 * basically increases all the error that we were already seeing in the first order
47 * approx. So this version is not the one to use. Version 2 has the opposite effect
48 * and tends to overestimate the distances. This is much closer to what we are
49 * looking for. It is able to render ellipses (even thin ones) without the need to chop.
50 * However, it can not handle thin hyperbolas well and thus would still rely on
51 * chopping to tighten the clipping. Another side effect of the overestimating is
52 * that the curves become much thinner and "ropey". If all that was ever rendered
53 * were "not too thin" curves and ellipses then 2nd order may have an advantage since
54 * only one geometry would need to be rendered. However no benches were run comparing
55 * chopped first order and non chopped 2nd order.
56 */
57class GrGLConicEffect;
58
joshualitt249af152014-09-15 11:41:13 -070059class GrConicEffect : public GrGeometryProcessor {
commit-bot@chromium.org07e1c3f2013-08-22 20:41:15 +000060public:
joshualitt2e3b3e32014-12-09 13:31:14 -080061 static GrGeometryProcessor* Create(GrColor color,
joshualitt8059eb92014-12-29 15:10:07 -080062 const SkMatrix& viewMatrix,
joshualitt2e3b3e32014-12-09 13:31:14 -080063 const GrPrimitiveEdgeType edgeType,
64 const GrDrawTargetCaps& caps,
joshualittd27f73e2014-12-29 07:43:36 -080065 const SkMatrix& localMatrix,
joshualitt2e3b3e32014-12-09 13:31:14 -080066 uint8_t coverage = 0xff) {
commit-bot@chromium.orgcabf4b22014-03-05 18:27:43 +000067 switch (edgeType) {
joshualittb0a8a372014-09-23 09:50:21 -070068 case kFillAA_GrProcessorEdgeType:
commit-bot@chromium.orgcabf4b22014-03-05 18:27:43 +000069 if (!caps.shaderDerivativeSupport()) {
70 return NULL;
71 }
joshualitt8059eb92014-12-29 15:10:07 -080072 return SkNEW_ARGS(GrConicEffect, (color, viewMatrix, coverage,
73 kFillAA_GrProcessorEdgeType,
joshualittd27f73e2014-12-29 07:43:36 -080074 localMatrix));
joshualittb0a8a372014-09-23 09:50:21 -070075 case kHairlineAA_GrProcessorEdgeType:
commit-bot@chromium.orgcabf4b22014-03-05 18:27:43 +000076 if (!caps.shaderDerivativeSupport()) {
77 return NULL;
78 }
joshualitt8059eb92014-12-29 15:10:07 -080079 return SkNEW_ARGS(GrConicEffect, (color, viewMatrix, coverage,
joshualittd27f73e2014-12-29 07:43:36 -080080 kHairlineAA_GrProcessorEdgeType,
81 localMatrix));
joshualittb0a8a372014-09-23 09:50:21 -070082 case kFillBW_GrProcessorEdgeType:
joshualitt8059eb92014-12-29 15:10:07 -080083 return SkNEW_ARGS(GrConicEffect, (color, viewMatrix, coverage,
84 kFillBW_GrProcessorEdgeType,
joshualittd27f73e2014-12-29 07:43:36 -080085 localMatrix));
commit-bot@chromium.orgcabf4b22014-03-05 18:27:43 +000086 default:
commit-bot@chromium.org07e1c3f2013-08-22 20:41:15 +000087 return NULL;
commit-bot@chromium.org07e1c3f2013-08-22 20:41:15 +000088 }
89 }
90
91 virtual ~GrConicEffect();
92
mtklein72c9faa2015-01-09 10:06:39 -080093 const char* name() const SK_OVERRIDE { return "Conic"; }
commit-bot@chromium.org07e1c3f2013-08-22 20:41:15 +000094
joshualitt71c92602015-01-14 08:12:47 -080095 inline const Attribute* inPosition() const { return fInPosition; }
96 inline const Attribute* inConicCoeffs() const { return fInConicCoeffs; }
joshualittb0a8a372014-09-23 09:50:21 -070097 inline bool isAntiAliased() const { return GrProcessorEdgeTypeIsAA(fEdgeType); }
98 inline bool isFilled() const { return GrProcessorEdgeTypeIsFill(fEdgeType); }
99 inline GrPrimitiveEdgeType getEdgeType() const { return fEdgeType; }
commit-bot@chromium.org07e1c3f2013-08-22 20:41:15 +0000100
joshualitteb2a6762014-12-04 11:35:33 -0800101 virtual void getGLProcessorKey(const GrBatchTracker& bt,
102 const GrGLCaps& caps,
103 GrProcessorKeyBuilder* b) const SK_OVERRIDE;
commit-bot@chromium.org07e1c3f2013-08-22 20:41:15 +0000104
joshualittabb52a12015-01-13 15:02:10 -0800105 virtual GrGLPrimitiveProcessor* createGLInstance(const GrBatchTracker& bt,
106 const GrGLCaps&) const SK_OVERRIDE;
commit-bot@chromium.org07e1c3f2013-08-22 20:41:15 +0000107
joshualitt9b989322014-12-15 14:16:27 -0800108 void initBatchTracker(GrBatchTracker*, const InitBT&) const SK_OVERRIDE;
joshualitt290c09b2014-12-19 13:45:20 -0800109 bool onCanMakeEqual(const GrBatchTracker&,
110 const GrGeometryProcessor&,
111 const GrBatchTracker&) const SK_OVERRIDE;
joshualitt9b989322014-12-15 14:16:27 -0800112
commit-bot@chromium.org07e1c3f2013-08-22 20:41:15 +0000113private:
joshualitt8059eb92014-12-29 15:10:07 -0800114 GrConicEffect(GrColor, const SkMatrix& viewMatrix, uint8_t coverage, GrPrimitiveEdgeType,
115 const SkMatrix& localMatrix);
commit-bot@chromium.org07e1c3f2013-08-22 20:41:15 +0000116
mtklein72c9faa2015-01-09 10:06:39 -0800117 bool onIsEqual(const GrGeometryProcessor& other) const SK_OVERRIDE;
commit-bot@chromium.org07e1c3f2013-08-22 20:41:15 +0000118
mtklein72c9faa2015-01-09 10:06:39 -0800119 void onGetInvariantOutputCoverage(GrInitInvariantOutput* out) const SK_OVERRIDE {
joshualitt56995b52014-12-11 15:44:02 -0800120 out->setUnknownSingleComponent();
egdaniel1a8ecdf2014-10-03 06:24:12 -0700121 }
122
joshualitt9b989322014-12-15 14:16:27 -0800123 uint8_t fCoverageScale;
joshualittb0a8a372014-09-23 09:50:21 -0700124 GrPrimitiveEdgeType fEdgeType;
joshualitt71c92602015-01-14 08:12:47 -0800125 const Attribute* fInPosition;
126 const Attribute* fInConicCoeffs;
commit-bot@chromium.org07e1c3f2013-08-22 20:41:15 +0000127
joshualittb0a8a372014-09-23 09:50:21 -0700128 GR_DECLARE_GEOMETRY_PROCESSOR_TEST;
commit-bot@chromium.org07e1c3f2013-08-22 20:41:15 +0000129
joshualitt249af152014-09-15 11:41:13 -0700130 typedef GrGeometryProcessor INHERITED;
commit-bot@chromium.org07e1c3f2013-08-22 20:41:15 +0000131};
132
133///////////////////////////////////////////////////////////////////////////////
134/**
135 * The output of this effect is a hairline edge for quadratics.
136 * Quadratic specified by 0=u^2-v canonical coords. u and v are the first
137 * two components of the vertex attribute. At the three control points that define
138 * the Quadratic, u, v have the values {0,0}, {1/2, 0}, and {1, 1} respectively.
139 * Coverage for AA is min(0, 1-distance). 3rd & 4th cimponent unused.
140 * Requires shader derivative instruction support.
141 */
142class GrGLQuadEffect;
143
joshualitt249af152014-09-15 11:41:13 -0700144class GrQuadEffect : public GrGeometryProcessor {
commit-bot@chromium.org07e1c3f2013-08-22 20:41:15 +0000145public:
joshualitt2e3b3e32014-12-09 13:31:14 -0800146 static GrGeometryProcessor* Create(GrColor color,
joshualitt8059eb92014-12-29 15:10:07 -0800147 const SkMatrix& viewMatrix,
joshualitt2e3b3e32014-12-09 13:31:14 -0800148 const GrPrimitiveEdgeType edgeType,
149 const GrDrawTargetCaps& caps,
joshualittd27f73e2014-12-29 07:43:36 -0800150 const SkMatrix& localMatrix,
joshualitt2e3b3e32014-12-09 13:31:14 -0800151 uint8_t coverage = 0xff) {
commit-bot@chromium.orgcabf4b22014-03-05 18:27:43 +0000152 switch (edgeType) {
joshualittb0a8a372014-09-23 09:50:21 -0700153 case kFillAA_GrProcessorEdgeType:
commit-bot@chromium.orgcabf4b22014-03-05 18:27:43 +0000154 if (!caps.shaderDerivativeSupport()) {
155 return NULL;
156 }
joshualitt8059eb92014-12-29 15:10:07 -0800157 return SkNEW_ARGS(GrQuadEffect, (color, viewMatrix, coverage,
158 kFillAA_GrProcessorEdgeType,
joshualittd27f73e2014-12-29 07:43:36 -0800159 localMatrix));
joshualittb0a8a372014-09-23 09:50:21 -0700160 case kHairlineAA_GrProcessorEdgeType:
commit-bot@chromium.orgcabf4b22014-03-05 18:27:43 +0000161 if (!caps.shaderDerivativeSupport()) {
162 return NULL;
163 }
joshualitt8059eb92014-12-29 15:10:07 -0800164 return SkNEW_ARGS(GrQuadEffect, (color, viewMatrix, coverage,
165 kHairlineAA_GrProcessorEdgeType,
joshualittd27f73e2014-12-29 07:43:36 -0800166 localMatrix));
joshualittb0a8a372014-09-23 09:50:21 -0700167 case kFillBW_GrProcessorEdgeType:
joshualitt8059eb92014-12-29 15:10:07 -0800168 return SkNEW_ARGS(GrQuadEffect, (color, viewMatrix, coverage,
169 kFillBW_GrProcessorEdgeType,
joshualittd27f73e2014-12-29 07:43:36 -0800170 localMatrix));
commit-bot@chromium.orgcabf4b22014-03-05 18:27:43 +0000171 default:
commit-bot@chromium.org07e1c3f2013-08-22 20:41:15 +0000172 return NULL;
commit-bot@chromium.org07e1c3f2013-08-22 20:41:15 +0000173 }
174 }
175
176 virtual ~GrQuadEffect();
177
mtklein72c9faa2015-01-09 10:06:39 -0800178 const char* name() const SK_OVERRIDE { return "Quad"; }
commit-bot@chromium.org07e1c3f2013-08-22 20:41:15 +0000179
joshualitt71c92602015-01-14 08:12:47 -0800180 inline const Attribute* inPosition() const { return fInPosition; }
181 inline const Attribute* inHairQuadEdge() const { return fInHairQuadEdge; }
joshualittb0a8a372014-09-23 09:50:21 -0700182 inline bool isAntiAliased() const { return GrProcessorEdgeTypeIsAA(fEdgeType); }
183 inline bool isFilled() const { return GrProcessorEdgeTypeIsFill(fEdgeType); }
184 inline GrPrimitiveEdgeType getEdgeType() const { return fEdgeType; }
commit-bot@chromium.org07e1c3f2013-08-22 20:41:15 +0000185
joshualitteb2a6762014-12-04 11:35:33 -0800186 virtual void getGLProcessorKey(const GrBatchTracker& bt,
187 const GrGLCaps& caps,
188 GrProcessorKeyBuilder* b) const SK_OVERRIDE;
commit-bot@chromium.org07e1c3f2013-08-22 20:41:15 +0000189
joshualittabb52a12015-01-13 15:02:10 -0800190 virtual GrGLPrimitiveProcessor* createGLInstance(const GrBatchTracker& bt,
191 const GrGLCaps&) const SK_OVERRIDE;
commit-bot@chromium.org07e1c3f2013-08-22 20:41:15 +0000192
joshualitt9b989322014-12-15 14:16:27 -0800193 void initBatchTracker(GrBatchTracker*, const InitBT&) const SK_OVERRIDE;
joshualitt290c09b2014-12-19 13:45:20 -0800194 bool onCanMakeEqual(const GrBatchTracker&,
195 const GrGeometryProcessor&,
196 const GrBatchTracker&) const SK_OVERRIDE;
joshualitt9b989322014-12-15 14:16:27 -0800197
commit-bot@chromium.org07e1c3f2013-08-22 20:41:15 +0000198private:
joshualitt8059eb92014-12-29 15:10:07 -0800199 GrQuadEffect(GrColor, const SkMatrix& viewMatrix, uint8_t coverage, GrPrimitiveEdgeType,
200 const SkMatrix& localMatrix);
commit-bot@chromium.org07e1c3f2013-08-22 20:41:15 +0000201
mtklein72c9faa2015-01-09 10:06:39 -0800202 bool onIsEqual(const GrGeometryProcessor& other) const SK_OVERRIDE;
commit-bot@chromium.org07e1c3f2013-08-22 20:41:15 +0000203
mtklein72c9faa2015-01-09 10:06:39 -0800204 void onGetInvariantOutputCoverage(GrInitInvariantOutput* out) const SK_OVERRIDE {
joshualitt56995b52014-12-11 15:44:02 -0800205 out->setUnknownSingleComponent();
egdaniel1a8ecdf2014-10-03 06:24:12 -0700206 }
207
joshualitt9b989322014-12-15 14:16:27 -0800208 uint8_t fCoverageScale;
joshualittb0a8a372014-09-23 09:50:21 -0700209 GrPrimitiveEdgeType fEdgeType;
joshualitt71c92602015-01-14 08:12:47 -0800210 const Attribute* fInPosition;
211 const Attribute* fInHairQuadEdge;
commit-bot@chromium.org07e1c3f2013-08-22 20:41:15 +0000212
joshualittb0a8a372014-09-23 09:50:21 -0700213 GR_DECLARE_GEOMETRY_PROCESSOR_TEST;
commit-bot@chromium.org07e1c3f2013-08-22 20:41:15 +0000214
joshualitt249af152014-09-15 11:41:13 -0700215 typedef GrGeometryProcessor INHERITED;
commit-bot@chromium.org07e1c3f2013-08-22 20:41:15 +0000216};
217
218//////////////////////////////////////////////////////////////////////////////
219/**
220 * Shader is based off of "Resolution Independent Curve Rendering using
221 * Programmable Graphics Hardware" by Loop and Blinn.
222 * The output of this effect is a hairline edge for non rational cubics.
223 * Cubics are specified by implicit equation K^3 - LM.
224 * K, L, and M, are the first three values of the vertex attribute,
225 * the fourth value is not used. Distance is calculated using a
226 * first order approximation from the taylor series.
227 * Coverage for AA is max(0, 1-distance).
228 */
229class GrGLCubicEffect;
230
joshualitt249af152014-09-15 11:41:13 -0700231class GrCubicEffect : public GrGeometryProcessor {
commit-bot@chromium.org07e1c3f2013-08-22 20:41:15 +0000232public:
joshualitt2e3b3e32014-12-09 13:31:14 -0800233 static GrGeometryProcessor* Create(GrColor color,
joshualitt8059eb92014-12-29 15:10:07 -0800234 const SkMatrix& viewMatrix,
joshualitt2e3b3e32014-12-09 13:31:14 -0800235 const GrPrimitiveEdgeType edgeType,
joshualittb0a8a372014-09-23 09:50:21 -0700236 const GrDrawTargetCaps& caps) {
commit-bot@chromium.orgcabf4b22014-03-05 18:27:43 +0000237 switch (edgeType) {
joshualittb0a8a372014-09-23 09:50:21 -0700238 case kFillAA_GrProcessorEdgeType:
commit-bot@chromium.orgcabf4b22014-03-05 18:27:43 +0000239 if (!caps.shaderDerivativeSupport()) {
240 return NULL;
241 }
joshualitt8059eb92014-12-29 15:10:07 -0800242 return SkNEW_ARGS(GrCubicEffect, (color, viewMatrix, kFillAA_GrProcessorEdgeType));
joshualittb0a8a372014-09-23 09:50:21 -0700243 case kHairlineAA_GrProcessorEdgeType:
commit-bot@chromium.orgcabf4b22014-03-05 18:27:43 +0000244 if (!caps.shaderDerivativeSupport()) {
245 return NULL;
246 }
joshualitt8059eb92014-12-29 15:10:07 -0800247 return SkNEW_ARGS(GrCubicEffect, (color, viewMatrix,
248 kHairlineAA_GrProcessorEdgeType));
joshualittb0a8a372014-09-23 09:50:21 -0700249 case kFillBW_GrProcessorEdgeType:
joshualitt8059eb92014-12-29 15:10:07 -0800250 return SkNEW_ARGS(GrCubicEffect, (color, viewMatrix,
251 kFillBW_GrProcessorEdgeType));
commit-bot@chromium.orgcabf4b22014-03-05 18:27:43 +0000252 default:
commit-bot@chromium.org07e1c3f2013-08-22 20:41:15 +0000253 return NULL;
commit-bot@chromium.org07e1c3f2013-08-22 20:41:15 +0000254 }
255 }
256
257 virtual ~GrCubicEffect();
258
mtklein72c9faa2015-01-09 10:06:39 -0800259 const char* name() const SK_OVERRIDE { return "Cubic"; }
commit-bot@chromium.org07e1c3f2013-08-22 20:41:15 +0000260
joshualitt71c92602015-01-14 08:12:47 -0800261 inline const Attribute* inPosition() const { return fInPosition; }
262 inline const Attribute* inCubicCoeffs() const { return fInCubicCoeffs; }
joshualittb0a8a372014-09-23 09:50:21 -0700263 inline bool isAntiAliased() const { return GrProcessorEdgeTypeIsAA(fEdgeType); }
264 inline bool isFilled() const { return GrProcessorEdgeTypeIsFill(fEdgeType); }
265 inline GrPrimitiveEdgeType getEdgeType() const { return fEdgeType; }
commit-bot@chromium.org07e1c3f2013-08-22 20:41:15 +0000266
joshualitteb2a6762014-12-04 11:35:33 -0800267 virtual void getGLProcessorKey(const GrBatchTracker& bt,
268 const GrGLCaps& caps,
269 GrProcessorKeyBuilder* b) const SK_OVERRIDE;
commit-bot@chromium.org07e1c3f2013-08-22 20:41:15 +0000270
joshualittabb52a12015-01-13 15:02:10 -0800271 virtual GrGLPrimitiveProcessor* createGLInstance(const GrBatchTracker& bt,
272 const GrGLCaps&) const SK_OVERRIDE;
commit-bot@chromium.org07e1c3f2013-08-22 20:41:15 +0000273
joshualitt9b989322014-12-15 14:16:27 -0800274 void initBatchTracker(GrBatchTracker*, const InitBT&) const SK_OVERRIDE;
joshualitt290c09b2014-12-19 13:45:20 -0800275 bool onCanMakeEqual(const GrBatchTracker&,
276 const GrGeometryProcessor&,
277 const GrBatchTracker&) const SK_OVERRIDE;
joshualitt9b989322014-12-15 14:16:27 -0800278
commit-bot@chromium.org07e1c3f2013-08-22 20:41:15 +0000279private:
joshualitt8059eb92014-12-29 15:10:07 -0800280 GrCubicEffect(GrColor, const SkMatrix& viewMatrix, GrPrimitiveEdgeType);
commit-bot@chromium.org07e1c3f2013-08-22 20:41:15 +0000281
mtklein72c9faa2015-01-09 10:06:39 -0800282 bool onIsEqual(const GrGeometryProcessor& other) const SK_OVERRIDE;
commit-bot@chromium.org07e1c3f2013-08-22 20:41:15 +0000283
mtklein72c9faa2015-01-09 10:06:39 -0800284 void onGetInvariantOutputCoverage(GrInitInvariantOutput* out) const SK_OVERRIDE {
joshualitt56995b52014-12-11 15:44:02 -0800285 out->setUnknownSingleComponent();
egdaniel1a8ecdf2014-10-03 06:24:12 -0700286 }
287
joshualittb0a8a372014-09-23 09:50:21 -0700288 GrPrimitiveEdgeType fEdgeType;
joshualitt71c92602015-01-14 08:12:47 -0800289 const Attribute* fInPosition;
290 const Attribute* fInCubicCoeffs;
commit-bot@chromium.org07e1c3f2013-08-22 20:41:15 +0000291
joshualittb0a8a372014-09-23 09:50:21 -0700292 GR_DECLARE_GEOMETRY_PROCESSOR_TEST;
commit-bot@chromium.org07e1c3f2013-08-22 20:41:15 +0000293
joshualitt249af152014-09-15 11:41:13 -0700294 typedef GrGeometryProcessor INHERITED;
commit-bot@chromium.org07e1c3f2013-08-22 20:41:15 +0000295};
296
297#endif