commit-bot@chromium.org | c3fe549 | 2014-01-30 18:15:51 +0000 | [diff] [blame] | 1 | /* |
| 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 | #ifndef GrConvexPolyEffect_DEFINED |
| 9 | #define GrConvexPolyEffect_DEFINED |
| 10 | |
| 11 | #include "GrDrawTargetCaps.h" |
joshualitt | eb2a676 | 2014-12-04 11:35:33 -0800 | [diff] [blame] | 12 | #include "GrFragmentProcessor.h" |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 13 | #include "GrProcessor.h" |
commit-bot@chromium.org | cabf4b2 | 2014-03-05 18:27:43 +0000 | [diff] [blame] | 14 | #include "GrTypesPriv.h" |
commit-bot@chromium.org | c3fe549 | 2014-01-30 18:15:51 +0000 | [diff] [blame] | 15 | |
egdaniel | 605dd0f | 2014-11-12 08:35:25 -0800 | [diff] [blame] | 16 | class GrInvariantOutput; |
commit-bot@chromium.org | c3fe549 | 2014-01-30 18:15:51 +0000 | [diff] [blame] | 17 | class SkPath; |
| 18 | |
| 19 | /** |
| 20 | * An effect that renders a convex polygon. It is intended to be used as a coverage effect. |
| 21 | * Bounding geometry is rendered and the effect computes coverage based on the fragment's |
| 22 | * position relative to the polygon. |
| 23 | */ |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 24 | class GrConvexPolyEffect : public GrFragmentProcessor { |
commit-bot@chromium.org | c3fe549 | 2014-01-30 18:15:51 +0000 | [diff] [blame] | 25 | public: |
commit-bot@chromium.org | c3fe549 | 2014-01-30 18:15:51 +0000 | [diff] [blame] | 26 | enum { |
commit-bot@chromium.org | c3fe549 | 2014-01-30 18:15:51 +0000 | [diff] [blame] | 27 | kMaxEdges = 8, |
| 28 | }; |
| 29 | |
| 30 | /** |
| 31 | * edges is a set of n edge equations where n is limited to kMaxEdges. It contains 3*n values. |
| 32 | * The edges should form a convex polygon. The positive half-plane is considered to be the |
| 33 | * inside. The equations should be normalized such that the first two coefficients are a unit |
| 34 | * 2d vector. |
| 35 | * |
| 36 | * Currently the edges are specified in device space. In the future we may prefer to specify |
| 37 | * them in src space. There are a number of ways this could be accomplished but we'd probably |
| 38 | * have to modify the effect/shaderbuilder interface to make it possible (e.g. give access |
| 39 | * to the view matrix or untransformed positions in the fragment shader). |
| 40 | */ |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 41 | static GrFragmentProcessor* Create(GrPrimitiveEdgeType edgeType, int n, |
| 42 | const SkScalar edges[]) { |
| 43 | if (n <= 0 || n > kMaxEdges || kHairlineAA_GrProcessorEdgeType == edgeType) { |
commit-bot@chromium.org | c3fe549 | 2014-01-30 18:15:51 +0000 | [diff] [blame] | 44 | return NULL; |
| 45 | } |
bsalomon | 55fad7a | 2014-07-08 07:34:20 -0700 | [diff] [blame] | 46 | return SkNEW_ARGS(GrConvexPolyEffect, (edgeType, n, edges)); |
commit-bot@chromium.org | c3fe549 | 2014-01-30 18:15:51 +0000 | [diff] [blame] | 47 | } |
| 48 | |
| 49 | /** |
| 50 | * Creates an effect that clips against the path. If the path is not a convex polygon, is |
commit-bot@chromium.org | b21fac1 | 2014-02-07 21:13:11 +0000 | [diff] [blame] | 51 | * inverse filled, or has too many edges, this will return NULL. If offset is non-NULL, then |
| 52 | * the path is translated by the vector. |
commit-bot@chromium.org | c3fe549 | 2014-01-30 18:15:51 +0000 | [diff] [blame] | 53 | */ |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 54 | static GrFragmentProcessor* Create(GrPrimitiveEdgeType, const SkPath&, |
| 55 | const SkVector* offset = NULL); |
commit-bot@chromium.org | c3fe549 | 2014-01-30 18:15:51 +0000 | [diff] [blame] | 56 | |
commit-bot@chromium.org | f053980 | 2014-02-08 19:31:05 +0000 | [diff] [blame] | 57 | /** |
| 58 | * Creates an effect that fills inside the rect with AA edges.. |
| 59 | */ |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 60 | static GrFragmentProcessor* Create(GrPrimitiveEdgeType, const SkRect&); |
commit-bot@chromium.org | f053980 | 2014-02-08 19:31:05 +0000 | [diff] [blame] | 61 | |
commit-bot@chromium.org | c3fe549 | 2014-01-30 18:15:51 +0000 | [diff] [blame] | 62 | virtual ~GrConvexPolyEffect(); |
| 63 | |
mtklein | 72c9faa | 2015-01-09 10:06:39 -0800 | [diff] [blame] | 64 | const char* name() const SK_OVERRIDE { return "ConvexPoly"; } |
commit-bot@chromium.org | c3fe549 | 2014-01-30 18:15:51 +0000 | [diff] [blame] | 65 | |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 66 | GrPrimitiveEdgeType getEdgeType() const { return fEdgeType; } |
commit-bot@chromium.org | c3fe549 | 2014-01-30 18:15:51 +0000 | [diff] [blame] | 67 | |
| 68 | int getEdgeCount() const { return fEdgeCount; } |
| 69 | |
| 70 | const SkScalar* getEdges() const { return fEdges; } |
| 71 | |
mtklein | 72c9faa | 2015-01-09 10:06:39 -0800 | [diff] [blame] | 72 | void getGLProcessorKey(const GrGLCaps&, GrProcessorKeyBuilder*) const SK_OVERRIDE; |
commit-bot@chromium.org | c3fe549 | 2014-01-30 18:15:51 +0000 | [diff] [blame] | 73 | |
mtklein | 72c9faa | 2015-01-09 10:06:39 -0800 | [diff] [blame] | 74 | GrGLFragmentProcessor* createGLInstance() const SK_OVERRIDE; |
commit-bot@chromium.org | c3fe549 | 2014-01-30 18:15:51 +0000 | [diff] [blame] | 75 | |
| 76 | private: |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 77 | GrConvexPolyEffect(GrPrimitiveEdgeType edgeType, int n, const SkScalar edges[]); |
commit-bot@chromium.org | c3fe549 | 2014-01-30 18:15:51 +0000 | [diff] [blame] | 78 | |
mtklein | 72c9faa | 2015-01-09 10:06:39 -0800 | [diff] [blame] | 79 | bool onIsEqual(const GrFragmentProcessor& other) const SK_OVERRIDE; |
commit-bot@chromium.org | c3fe549 | 2014-01-30 18:15:51 +0000 | [diff] [blame] | 80 | |
mtklein | 72c9faa | 2015-01-09 10:06:39 -0800 | [diff] [blame] | 81 | void onComputeInvariantOutput(GrInvariantOutput* inout) const SK_OVERRIDE; |
egdaniel | 1a8ecdf | 2014-10-03 06:24:12 -0700 | [diff] [blame] | 82 | |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 83 | GrPrimitiveEdgeType fEdgeType; |
| 84 | int fEdgeCount; |
| 85 | SkScalar fEdges[3 * kMaxEdges]; |
commit-bot@chromium.org | c3fe549 | 2014-01-30 18:15:51 +0000 | [diff] [blame] | 86 | |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 87 | GR_DECLARE_FRAGMENT_PROCESSOR_TEST; |
commit-bot@chromium.org | c3fe549 | 2014-01-30 18:15:51 +0000 | [diff] [blame] | 88 | |
joshualitt | b0a8a37 | 2014-09-23 09:50:21 -0700 | [diff] [blame] | 89 | typedef GrFragmentProcessor INHERITED; |
commit-bot@chromium.org | c3fe549 | 2014-01-30 18:15:51 +0000 | [diff] [blame] | 90 | }; |
| 91 | |
| 92 | |
| 93 | #endif |