blob: f358dfcd9b238c53d1105629bda5bd78c5da5fef [file] [log] [blame]
senorblanco@chromium.org9d18b782011-03-28 20:47:09 +00001/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00002 * Copyright 2011 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.
senorblanco@chromium.org9d18b782011-03-28 20:47:09 +00006 */
7
8#ifndef GrPathUtils_DEFINED
9#define GrPathUtils_DEFINED
10
Chris Daltonfebbffa2017-06-08 13:12:02 -060011#include "SkGeometry.h"
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +000012#include "SkRect.h"
reed026beb52015-06-10 14:23:15 -070013#include "SkPathPriv.h"
bsalomon@google.com69cc6ad2012-01-17 14:25:10 +000014#include "SkTArray.h"
senorblanco@chromium.org9d18b782011-03-28 20:47:09 +000015
bsalomon@google.comb9086a02012-11-01 18:02:54 +000016class SkMatrix;
17
senorblanco@chromium.org9d18b782011-03-28 20:47:09 +000018/**
19 * Utilities for evaluating paths.
20 */
bsalomon@google.com181e9bd2011-09-07 18:42:30 +000021namespace GrPathUtils {
Brian Osman25294d72017-05-09 16:36:41 -040022 // Very small tolerances will be increased to a minimum threshold value, to avoid division
23 // problems in subsequent math.
bsalomon@google.com81712882012-11-01 17:12:34 +000024 SkScalar scaleToleranceToSrc(SkScalar devTol,
bsalomon@google.comb9086a02012-11-01 18:02:54 +000025 const SkMatrix& viewM,
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +000026 const SkRect& pathBounds);
tomhudson@google.comc10a8882011-06-28 15:19:32 +000027
bsalomon@google.com8d033a12012-04-27 15:52:53 +000028 int worstCasePointCount(const SkPath&,
bsalomon@google.com181e9bd2011-09-07 18:42:30 +000029 int* subpaths,
bsalomon@google.com81712882012-11-01 17:12:34 +000030 SkScalar tol);
bsalomon@google.com19713172012-03-15 13:51:08 +000031
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +000032 uint32_t quadraticPointCount(const SkPoint points[], SkScalar tol);
bsalomon@google.com19713172012-03-15 13:51:08 +000033
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +000034 uint32_t generateQuadraticPoints(const SkPoint& p0,
35 const SkPoint& p1,
36 const SkPoint& p2,
bsalomon@google.com81712882012-11-01 17:12:34 +000037 SkScalar tolSqd,
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +000038 SkPoint** points,
bsalomon@google.com181e9bd2011-09-07 18:42:30 +000039 uint32_t pointsLeft);
bsalomon@google.com19713172012-03-15 13:51:08 +000040
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +000041 uint32_t cubicPointCount(const SkPoint points[], SkScalar tol);
bsalomon@google.com19713172012-03-15 13:51:08 +000042
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +000043 uint32_t generateCubicPoints(const SkPoint& p0,
44 const SkPoint& p1,
45 const SkPoint& p2,
46 const SkPoint& p3,
bsalomon@google.com81712882012-11-01 17:12:34 +000047 SkScalar tolSqd,
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +000048 SkPoint** points,
bsalomon@google.com181e9bd2011-09-07 18:42:30 +000049 uint32_t pointsLeft);
bsalomon@google.com19713172012-03-15 13:51:08 +000050
51 // A 2x3 matrix that goes from the 2d space coordinates to UV space where
52 // u^2-v = 0 specifies the quad. The matrix is determined by the control
53 // points of the quadratic.
54 class QuadUVMatrix {
55 public:
Mike Kleinfc6c37b2016-09-27 09:34:10 -040056 QuadUVMatrix() {}
bsalomon@google.com19713172012-03-15 13:51:08 +000057 // Initialize the matrix from the control pts
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +000058 QuadUVMatrix(const SkPoint controlPts[3]) { this->set(controlPts); }
59 void set(const SkPoint controlPts[3]);
bsalomon@google.com19713172012-03-15 13:51:08 +000060
61 /**
Brian Osman568bec72018-12-26 16:48:25 -050062 * Applies the matrix to vertex positions to compute UV coords.
bsalomon@google.com19713172012-03-15 13:51:08 +000063 *
bsalomon@google.com19713172012-03-15 13:51:08 +000064 * vertices is a pointer to the first vertex.
Brian Osman568bec72018-12-26 16:48:25 -050065 * vertexCount is the number of vertices.
66 * stride is the size of each vertex.
67 * uvOffset is the offset of the UV values within each vertex.
bsalomon@google.com19713172012-03-15 13:51:08 +000068 */
Brian Osman568bec72018-12-26 16:48:25 -050069 void apply(void* vertices, int vertexCount, size_t stride, size_t uvOffset) const {
bsalomon@google.com19713172012-03-15 13:51:08 +000070 intptr_t xyPtr = reinterpret_cast<intptr_t>(vertices);
Brian Osman568bec72018-12-26 16:48:25 -050071 intptr_t uvPtr = reinterpret_cast<intptr_t>(vertices) + uvOffset;
bsalomon@google.com19713172012-03-15 13:51:08 +000072 float sx = fM[0];
73 float kx = fM[1];
74 float tx = fM[2];
75 float ky = fM[3];
76 float sy = fM[4];
77 float ty = fM[5];
Brian Osman568bec72018-12-26 16:48:25 -050078 for (int i = 0; i < vertexCount; ++i) {
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +000079 const SkPoint* xy = reinterpret_cast<const SkPoint*>(xyPtr);
80 SkPoint* uv = reinterpret_cast<SkPoint*>(uvPtr);
bsalomon@google.com19713172012-03-15 13:51:08 +000081 uv->fX = sx * xy->fX + kx * xy->fY + tx;
82 uv->fY = ky * xy->fX + sy * xy->fY + ty;
Brian Osman568bec72018-12-26 16:48:25 -050083 xyPtr += stride;
84 uvPtr += stride;
bsalomon@google.com19713172012-03-15 13:51:08 +000085 }
86 }
87 private:
88 float fM[6];
89 };
90
commit-bot@chromium.org13948402013-08-20 17:55:43 +000091 // Input is 3 control points and a weight for a bezier conic. Calculates the
92 // three linear functionals (K,L,M) that represent the implicit equation of the
csmartdaltoncc261272017-03-23 13:38:45 -060093 // conic, k^2 - lm.
commit-bot@chromium.org13948402013-08-20 17:55:43 +000094 //
csmartdaltoncc261272017-03-23 13:38:45 -060095 // Output: klm holds the linear functionals K,L,M as row vectors:
96 //
97 // | ..K.. | | x | | k |
98 // | ..L.. | * | y | == | l |
99 // | ..M.. | | 1 | | m |
100 //
101 void getConicKLM(const SkPoint p[3], const SkScalar weight, SkMatrix* klm);
bsalomon@google.coma51ab842012-07-10 19:53:34 +0000102
bsalomon@google.com69cc6ad2012-01-17 14:25:10 +0000103 // Converts a cubic into a sequence of quads. If working in device space
104 // use tolScale = 1, otherwise set based on stretchiness of the matrix. The
Brian Salomon3ac1f952018-09-07 13:47:49 -0400105 // result is sets of 3 points in quads. This will preserve the starting and
106 // ending tangent vectors (modulo FP precision).
bsalomon18fab302016-02-16 08:00:05 -0800107 void convertCubicToQuads(const SkPoint p[4],
108 SkScalar tolScale,
109 SkTArray<SkPoint, true>* quads);
110
bsalomon@google.coma51ab842012-07-10 19:53:34 +0000111 // When we approximate a cubic {a,b,c,d} with a quadratic we may have to
112 // ensure that the new control point lies between the lines ab and cd. The
113 // convex path renderer requires this. It starts with a path where all the
114 // control points taken together form a convex polygon. It relies on this
115 // property and the quadratic approximation of cubics step cannot alter it.
bsalomon18fab302016-02-16 08:00:05 -0800116 // This variation enforces this constraint. The cubic must be simple and dir
117 // must specify the orientation of the contour containing the cubic.
118 void convertCubicToQuadsConstrainToTangents(const SkPoint p[4],
119 SkScalar tolScale,
120 SkPathPriv::FirstDirection dir,
121 SkTArray<SkPoint, true>* quads);
commit-bot@chromium.org858638d2013-08-20 14:45:45 +0000122
Chris Dalton695db402017-08-28 11:29:49 -0600123 enum class ExcludedTerm {
124 kNonInvertible,
125 kQuadraticTerm,
126 kLinearTerm
127 };
128
129 // Computes the inverse-transpose of the cubic's power basis matrix, after removing a specific
130 // row of coefficients.
131 //
132 // E.g. if the cubic is defined in power basis form as follows:
133 //
134 // | x3 y3 0 |
135 // C(t,s) = [t^3 t^2*s t*s^2 s^3] * | x2 y2 0 |
136 // | x1 y1 0 |
137 // | x0 y0 1 |
138 //
139 // And the excluded term is "kQuadraticTerm", then the resulting inverse-transpose will be:
140 //
141 // | x3 y3 0 | -1 T
142 // | x1 y1 0 |
143 // | x0 y0 1 |
144 //
145 // (The term to exclude is chosen based on maximizing the resulting matrix determinant.)
146 //
147 // This can be used to find the KLM linear functionals:
148 //
149 // | ..K.. | | ..kcoeffs.. |
150 // | ..L.. | = | ..lcoeffs.. | * inverse_transpose_power_basis_matrix
151 // | ..M.. | | ..mcoeffs.. |
152 //
153 // NOTE: the same term that was excluded here must also be removed from the corresponding column
154 // of the klmcoeffs matrix.
155 //
156 // Returns which row of coefficients was removed, or kNonInvertible if the cubic was degenerate.
157 ExcludedTerm calcCubicInverseTransposePowerBasisMatrix(const SkPoint p[4], SkMatrix* out);
158
Chris Daltonfebbffa2017-06-08 13:12:02 -0600159 // Computes the KLM linear functionals for the cubic implicit form. The "right" side of the
160 // curve (when facing in the direction of increasing parameter values) will be the area that
161 // satisfies:
commit-bot@chromium.org858638d2013-08-20 14:45:45 +0000162 //
Chris Daltonfebbffa2017-06-08 13:12:02 -0600163 // k^3 < l*m
commit-bot@chromium.org858638d2013-08-20 14:45:45 +0000164 //
csmartdaltoncc261272017-03-23 13:38:45 -0600165 // Output:
166 //
167 // klm: Holds the linear functionals K,L,M as row vectors:
168 //
169 // | ..K.. | | x | | k |
170 // | ..L.. | * | y | == | l |
171 // | ..M.. | | 1 | | m |
172 //
Chris Daltonfebbffa2017-06-08 13:12:02 -0600173 // NOTE: the KLM lines are calculated in the same space as the input control points. If you
174 // transform the points the lines will also need to be transformed. This can be done by mapping
175 // the lines with the inverse-transpose of the matrix used to map the points.
176 //
177 // t[],s[]: These are set to the two homogeneous parameter values at which points the lines L&M
178 // intersect with K (See SkClassifyCubic).
179 //
180 // Returns the cubic's classification.
Chris Dalton390f6cd2017-06-12 11:22:54 -0600181 SkCubicType getCubicKLM(const SkPoint src[4], SkMatrix* klm, double t[2], double s[2]);
Chris Daltonfebbffa2017-06-08 13:12:02 -0600182
183 // Chops the cubic bezier passed in by src, at the double point (intersection point)
184 // if the curve is a cubic loop. If it is a loop, there will be two parametric values for
185 // the double point: t1 and t2. We chop the cubic at these values if they are between 0 and 1.
186 // Return value:
187 // Value of 3: t1 and t2 are both between (0,1), and dst will contain the three cubics,
188 // dst[0..3], dst[3..6], and dst[6..9] if dst is not nullptr
189 // Value of 2: Only one of t1 and t2 are between (0,1), and dst will contain the two cubics,
190 // dst[0..3] and dst[3..6] if dst is not nullptr
191 // Value of 1: Neither t1 nor t2 are between (0,1), and dst will contain the one original cubic,
192 // src[0..3]
193 //
194 // Output:
195 //
196 // klm: Holds the linear functionals K,L,M as row vectors. (See getCubicKLM().)
197 //
csmartdaltoncc261272017-03-23 13:38:45 -0600198 // loopIndex: This value will tell the caller which of the chopped sections (if any) are the
199 // actual loop. A value of -1 means there is no loop section. The caller can then use
200 // this value to decide how/if they want to flip the orientation of this section.
201 // The flip should be done by negating the k and l values as follows:
202 //
Chris Daltonfebbffa2017-06-08 13:12:02 -0600203 // KLM.postScale(-1, -1)
204 int chopCubicAtLoopIntersection(const SkPoint src[4], SkPoint dst[10], SkMatrix* klm,
205 int* loopIndex);
senorblanco2b4bb072015-04-22 13:45:18 -0700206
207 // When tessellating curved paths into linear segments, this defines the maximum distance
208 // in screen space which a segment may deviate from the mathmatically correct value.
209 // Above this value, the segment will be subdivided.
210 // This value was chosen to approximate the supersampling accuracy of the raster path (16
211 // samples, or one quarter pixel).
212 static const SkScalar kDefaultTolerance = SkDoubleToScalar(0.25);
Brian Osman49b7b6f2017-06-20 14:43:58 -0400213
214 // We guarantee that no quad or cubic will ever produce more than this many points
215 static const int kMaxPointsPerCurve = 1 << 10;
senorblanco@chromium.org9d18b782011-03-28 20:47:09 +0000216};
217#endif