blob: 6424ad511535b481d395897315cf521e7a9f328d [file] [log] [blame]
bsalomon@google.comf75b84e2011-09-29 14:58:28 +00001
2/*
3 * Copyright 2011 Google Inc.
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
7 */
8
bsalomon@google.comaeb21602011-08-30 18:13:44 +00009#include "GrAAHairLinePathRenderer.h"
10
11#include "GrContext.h"
tomhudson@google.com93813632011-10-27 20:21:16 +000012#include "GrDrawState.h"
bsalomon@google.comaeb21602011-08-30 18:13:44 +000013#include "GrGpu.h"
14#include "GrIndexBuffer.h"
bsalomon@google.comdbeeac32011-09-12 14:59:34 +000015#include "GrPathUtils.h"
bsalomon@google.comaeb21602011-08-30 18:13:44 +000016#include "SkGeometry.h"
sugoi@google.com12b4e272012-12-06 20:13:11 +000017#include "SkStroke.h"
bsalomon@google.comaeb21602011-08-30 18:13:44 +000018#include "SkTemplates.h"
19
20namespace {
21// quadratics are rendered as 5-sided polys in order to bound the
22// AA stroke around the center-curve. See comments in push_quad_index_buffer and
23// bloat_quad.
24static const int kVertsPerQuad = 5;
25static const int kIdxsPerQuad = 9;
26
27static const int kVertsPerLineSeg = 4;
28static const int kIdxsPerLineSeg = 6;
29
30static const int kNumQuadsInIdxBuffer = 256;
31static const size_t kQuadIdxSBufize = kIdxsPerQuad *
32 sizeof(uint16_t) *
33 kNumQuadsInIdxBuffer;
34
35bool push_quad_index_data(GrIndexBuffer* qIdxBuffer) {
36 uint16_t* data = (uint16_t*) qIdxBuffer->lock();
37 bool tempData = NULL == data;
38 if (tempData) {
tomhudson@google.comc377baf2012-07-09 20:17:56 +000039 data = SkNEW_ARRAY(uint16_t, kNumQuadsInIdxBuffer * kIdxsPerQuad);
bsalomon@google.comaeb21602011-08-30 18:13:44 +000040 }
41 for (int i = 0; i < kNumQuadsInIdxBuffer; ++i) {
42
43 // Each quadratic is rendered as a five sided polygon. This poly bounds
44 // the quadratic's bounding triangle but has been expanded so that the
45 // 1-pixel wide area around the curve is inside the poly.
46 // If a,b,c are the original control points then the poly a0,b0,c0,c1,a1
47 // that is rendered would look like this:
48 // b0
49 // b
50 //
51 // a0 c0
52 // a c
53 // a1 c1
bsalomon@google.com0e5104c2012-04-10 16:20:41 +000054 // Each is drawn as three triangles specified by these 9 indices:
bsalomon@google.comaeb21602011-08-30 18:13:44 +000055 int baseIdx = i * kIdxsPerQuad;
56 uint16_t baseVert = (uint16_t)(i * kVertsPerQuad);
57 data[0 + baseIdx] = baseVert + 0; // a0
58 data[1 + baseIdx] = baseVert + 1; // a1
59 data[2 + baseIdx] = baseVert + 2; // b0
60 data[3 + baseIdx] = baseVert + 2; // b0
61 data[4 + baseIdx] = baseVert + 4; // c1
62 data[5 + baseIdx] = baseVert + 3; // c0
63 data[6 + baseIdx] = baseVert + 1; // a1
64 data[7 + baseIdx] = baseVert + 4; // c1
65 data[8 + baseIdx] = baseVert + 2; // b0
66 }
67 if (tempData) {
68 bool ret = qIdxBuffer->updateData(data, kQuadIdxSBufize);
69 delete[] data;
70 return ret;
71 } else {
72 qIdxBuffer->unlock();
73 return true;
74 }
75}
76}
77
78GrPathRenderer* GrAAHairLinePathRenderer::Create(GrContext* context) {
bsalomon@google.coma8a6a322011-09-23 14:19:58 +000079 const GrIndexBuffer* lIdxBuffer = context->getQuadIndexBuffer();
80 if (NULL == lIdxBuffer) {
bsalomon@google.comaeb21602011-08-30 18:13:44 +000081 return NULL;
82 }
bsalomon@google.coma8a6a322011-09-23 14:19:58 +000083 GrGpu* gpu = context->getGpu();
84 GrIndexBuffer* qIdxBuf = gpu->createIndexBuffer(kQuadIdxSBufize, false);
85 SkAutoTUnref<GrIndexBuffer> qIdxBuffer(qIdxBuf);
86 if (NULL == qIdxBuf ||
87 !push_quad_index_data(qIdxBuf)) {
88 return NULL;
89 }
tomhudson@google.comc377baf2012-07-09 20:17:56 +000090 return SkNEW_ARGS(GrAAHairLinePathRenderer,
91 (context, lIdxBuffer, qIdxBuf));
bsalomon@google.comaeb21602011-08-30 18:13:44 +000092}
93
94GrAAHairLinePathRenderer::GrAAHairLinePathRenderer(
95 const GrContext* context,
96 const GrIndexBuffer* linesIndexBuffer,
97 const GrIndexBuffer* quadsIndexBuffer) {
bsalomon@google.comaeb21602011-08-30 18:13:44 +000098 fLinesIndexBuffer = linesIndexBuffer;
99 linesIndexBuffer->ref();
100 fQuadsIndexBuffer = quadsIndexBuffer;
101 quadsIndexBuffer->ref();
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000102}
103
104GrAAHairLinePathRenderer::~GrAAHairLinePathRenderer() {
105 fLinesIndexBuffer->unref();
106 fQuadsIndexBuffer->unref();
107}
108
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000109namespace {
110
bsalomon@google.com49313f62011-09-14 13:54:05 +0000111typedef SkTArray<SkPoint, true> PtArray;
bsalomon@google.com92669012011-09-27 19:10:05 +0000112#define PREALLOC_PTARRAY(N) SkSTArray<(N),SkPoint, true>
bsalomon@google.com49313f62011-09-14 13:54:05 +0000113typedef SkTArray<int, true> IntArray;
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000114
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000115// Takes 178th time of logf on Z600 / VC2010
116int get_float_exp(float x) {
117 GR_STATIC_ASSERT(sizeof(int) == sizeof(float));
118#if GR_DEBUG
119 static bool tested;
120 if (!tested) {
121 tested = true;
122 GrAssert(get_float_exp(0.25f) == -2);
123 GrAssert(get_float_exp(0.3f) == -2);
124 GrAssert(get_float_exp(0.5f) == -1);
125 GrAssert(get_float_exp(1.f) == 0);
126 GrAssert(get_float_exp(2.f) == 1);
127 GrAssert(get_float_exp(2.5f) == 1);
128 GrAssert(get_float_exp(8.f) == 3);
129 GrAssert(get_float_exp(100.f) == 6);
130 GrAssert(get_float_exp(1000.f) == 9);
131 GrAssert(get_float_exp(1024.f) == 10);
132 GrAssert(get_float_exp(3000000.f) == 21);
133 }
134#endif
bsalomon@google.com2ec72802011-09-21 21:46:03 +0000135 const int* iptr = (const int*)&x;
136 return (((*iptr) & 0x7f800000) >> 23) - 127;
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000137}
138
139// we subdivide the quads to avoid huge overfill
140// if it returns -1 then should be drawn as lines
141int num_quad_subdivs(const SkPoint p[3]) {
142 static const SkScalar gDegenerateToLineTol = SK_Scalar1;
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000143 static const SkScalar gDegenerateToLineTolSqd =
bsalomon@google.com46a2a1e2011-09-06 22:10:52 +0000144 SkScalarMul(gDegenerateToLineTol, gDegenerateToLineTol);
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000145
bsalomon@google.com46a2a1e2011-09-06 22:10:52 +0000146 if (p[0].distanceToSqd(p[1]) < gDegenerateToLineTolSqd ||
147 p[1].distanceToSqd(p[2]) < gDegenerateToLineTolSqd) {
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000148 return -1;
149 }
bsalomon@google.com46a2a1e2011-09-06 22:10:52 +0000150
bsalomon@google.com81712882012-11-01 17:12:34 +0000151 SkScalar dsqd = p[1].distanceToLineBetweenSqd(p[0], p[2]);
bsalomon@google.com46a2a1e2011-09-06 22:10:52 +0000152 if (dsqd < gDegenerateToLineTolSqd) {
153 return -1;
154 }
155
156 if (p[2].distanceToLineBetweenSqd(p[1], p[0]) < gDegenerateToLineTolSqd) {
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000157 return -1;
158 }
159
160 static const int kMaxSub = 4;
161 // tolerance of triangle height in pixels
162 // tuned on windows Quadro FX 380 / Z600
163 // trade off of fill vs cpu time on verts
164 // maybe different when do this using gpu (geo or tess shaders)
165 static const SkScalar gSubdivTol = 175 * SK_Scalar1;
166
robertphillips@google.com7460b372012-04-25 16:54:51 +0000167 if (dsqd <= SkScalarMul(gSubdivTol, gSubdivTol)) {
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000168 return 0;
169 } else {
170 // subdividing the quad reduces d by 4. so we want x = log4(d/tol)
171 // = log4(d*d/tol*tol)/2
172 // = log2(d*d/tol*tol)
173
174#ifdef SK_SCALAR_IS_FLOAT
175 // +1 since we're ignoring the mantissa contribution.
176 int log = get_float_exp(dsqd/(gSubdivTol*gSubdivTol)) + 1;
177 log = GrMin(GrMax(0, log), kMaxSub);
178 return log;
179#else
robertphillips@google.com7460b372012-04-25 16:54:51 +0000180 SkScalar log = SkScalarLog(
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000181 SkScalarDiv(dsqd,
robertphillips@google.com7460b372012-04-25 16:54:51 +0000182 SkScalarMul(gSubdivTol, gSubdivTol)));
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000183 static const SkScalar conv = SkScalarInvert(SkScalarLog(2));
184 log = SkScalarMul(log, conv);
185 return GrMin(GrMax(0, SkScalarCeilToInt(log)),kMaxSub);
186#endif
187 }
188}
189
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000190/**
191 * Generates the lines and quads to be rendered. Lines are always recorded in
192 * device space. We will do a device space bloat to account for the 1pixel
193 * thickness.
194 * Quads are recorded in device space unless m contains
195 * perspective, then in they are in src space. We do this because we will
196 * subdivide large quads to reduce over-fill. This subdivision has to be
197 * performed before applying the perspective matrix.
198 */
199int generate_lines_and_quads(const SkPath& path,
200 const SkMatrix& m,
robertphillips@google.com7b112892012-07-31 15:18:21 +0000201 const GrIRect& devClipBounds,
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000202 PtArray* lines,
203 PtArray* quads,
204 IntArray* quadSubdivCnts) {
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000205 SkPath::Iter iter(path, false);
206
207 int totalQuadCount = 0;
208 GrRect bounds;
209 GrIRect ibounds;
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000210
211 bool persp = m.hasPerspective();
212
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000213 for (;;) {
214 GrPoint pts[4];
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000215 GrPoint devPts[4];
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000216 GrPathCmd cmd = (GrPathCmd)iter.next(pts);
217 switch (cmd) {
218 case kMove_PathCmd:
219 break;
220 case kLine_PathCmd:
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000221 m.mapPoints(devPts, pts, 2);
222 bounds.setBounds(devPts, 2);
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000223 bounds.outset(SK_Scalar1, SK_Scalar1);
224 bounds.roundOut(&ibounds);
robertphillips@google.com7b112892012-07-31 15:18:21 +0000225 if (SkIRect::Intersects(devClipBounds, ibounds)) {
bsalomon@google.coma996fec2011-09-13 18:49:13 +0000226 SkPoint* pts = lines->push_back_n(2);
227 pts[0] = devPts[0];
228 pts[1] = devPts[1];
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000229 }
230 break;
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000231 case kQuadratic_PathCmd:
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000232 m.mapPoints(devPts, pts, 3);
233 bounds.setBounds(devPts, 3);
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000234 bounds.outset(SK_Scalar1, SK_Scalar1);
235 bounds.roundOut(&ibounds);
robertphillips@google.com7b112892012-07-31 15:18:21 +0000236 if (SkIRect::Intersects(devClipBounds, ibounds)) {
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000237 int subdiv = num_quad_subdivs(devPts);
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000238 GrAssert(subdiv >= -1);
239 if (-1 == subdiv) {
bsalomon@google.coma996fec2011-09-13 18:49:13 +0000240 SkPoint* pts = lines->push_back_n(4);
241 pts[0] = devPts[0];
242 pts[1] = devPts[1];
243 pts[2] = devPts[1];
244 pts[3] = devPts[2];
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000245 } else {
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000246 // when in perspective keep quads in src space
247 SkPoint* qPts = persp ? pts : devPts;
bsalomon@google.coma996fec2011-09-13 18:49:13 +0000248 SkPoint* pts = quads->push_back_n(3);
249 pts[0] = qPts[0];
250 pts[1] = qPts[1];
251 pts[2] = qPts[2];
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000252 quadSubdivCnts->push_back() = subdiv;
253 totalQuadCount += 1 << subdiv;
254 }
255 }
bsalomon@google.coma51ab842012-07-10 19:53:34 +0000256 break;
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000257 case kCubic_PathCmd:
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000258 m.mapPoints(devPts, pts, 4);
259 bounds.setBounds(devPts, 4);
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000260 bounds.outset(SK_Scalar1, SK_Scalar1);
261 bounds.roundOut(&ibounds);
robertphillips@google.com7b112892012-07-31 15:18:21 +0000262 if (SkIRect::Intersects(devClipBounds, ibounds)) {
bsalomon@google.com92669012011-09-27 19:10:05 +0000263 PREALLOC_PTARRAY(32) q;
bsalomon@google.coma51ab842012-07-10 19:53:34 +0000264 // we don't need a direction if we aren't constraining the subdivision
265 static const SkPath::Direction kDummyDir = SkPath::kCCW_Direction;
bsalomon@google.com69cc6ad2012-01-17 14:25:10 +0000266 // We convert cubics to quadratics (for now).
267 // In perspective have to do conversion in src space.
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000268 if (persp) {
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000269 SkScalar tolScale =
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000270 GrPathUtils::scaleToleranceToSrc(SK_Scalar1, m,
271 path.getBounds());
bsalomon@google.coma51ab842012-07-10 19:53:34 +0000272 GrPathUtils::convertCubicToQuads(pts, tolScale, false, kDummyDir, &q);
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000273 } else {
bsalomon@google.coma51ab842012-07-10 19:53:34 +0000274 GrPathUtils::convertCubicToQuads(devPts, SK_Scalar1, false, kDummyDir, &q);
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000275 }
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000276 for (int i = 0; i < q.count(); i += 3) {
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000277 SkPoint* qInDevSpace;
278 // bounds has to be calculated in device space, but q is
279 // in src space when there is perspective.
280 if (persp) {
281 m.mapPoints(devPts, &q[i], 3);
282 bounds.setBounds(devPts, 3);
283 qInDevSpace = devPts;
284 } else {
285 bounds.setBounds(&q[i], 3);
286 qInDevSpace = &q[i];
287 }
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000288 bounds.outset(SK_Scalar1, SK_Scalar1);
289 bounds.roundOut(&ibounds);
robertphillips@google.com7b112892012-07-31 15:18:21 +0000290 if (SkIRect::Intersects(devClipBounds, ibounds)) {
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000291 int subdiv = num_quad_subdivs(qInDevSpace);
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000292 GrAssert(subdiv >= -1);
293 if (-1 == subdiv) {
bsalomon@google.coma996fec2011-09-13 18:49:13 +0000294 SkPoint* pts = lines->push_back_n(4);
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000295 // lines should always be in device coords
bsalomon@google.coma996fec2011-09-13 18:49:13 +0000296 pts[0] = qInDevSpace[0];
297 pts[1] = qInDevSpace[1];
298 pts[2] = qInDevSpace[1];
299 pts[3] = qInDevSpace[2];
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000300 } else {
bsalomon@google.coma996fec2011-09-13 18:49:13 +0000301 SkPoint* pts = quads->push_back_n(3);
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000302 // q is already in src space when there is no
303 // perspective and dev coords otherwise.
bsalomon@google.coma996fec2011-09-13 18:49:13 +0000304 pts[0] = q[0 + i];
305 pts[1] = q[1 + i];
306 pts[2] = q[2 + i];
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000307 quadSubdivCnts->push_back() = subdiv;
308 totalQuadCount += 1 << subdiv;
309 }
310 }
311 }
312 }
bsalomon@google.coma51ab842012-07-10 19:53:34 +0000313 break;
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000314 case kClose_PathCmd:
315 break;
316 case kEnd_PathCmd:
317 return totalQuadCount;
318 }
319 }
320}
321
322struct Vertex {
323 GrPoint fPos;
324 union {
325 struct {
bsalomon@google.com81712882012-11-01 17:12:34 +0000326 SkScalar fA;
327 SkScalar fB;
328 SkScalar fC;
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000329 } fLine;
330 GrVec fQuadCoord;
331 struct {
bsalomon@google.com81712882012-11-01 17:12:34 +0000332 SkScalar fBogus[4];
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000333 };
334 };
335};
336GR_STATIC_ASSERT(sizeof(Vertex) == 3 * sizeof(GrPoint));
337
338void intersect_lines(const SkPoint& ptA, const SkVector& normA,
339 const SkPoint& ptB, const SkVector& normB,
340 SkPoint* result) {
341
342 SkScalar lineAW = -normA.dot(ptA);
343 SkScalar lineBW = -normB.dot(ptB);
344
345 SkScalar wInv = SkScalarMul(normA.fX, normB.fY) -
346 SkScalarMul(normA.fY, normB.fX);
347 wInv = SkScalarInvert(wInv);
348
349 result->fX = SkScalarMul(normA.fY, lineBW) - SkScalarMul(lineAW, normB.fY);
350 result->fX = SkScalarMul(result->fX, wInv);
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000351
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000352 result->fY = SkScalarMul(lineAW, normB.fX) - SkScalarMul(normA.fX, lineBW);
353 result->fY = SkScalarMul(result->fY, wInv);
354}
355
bsalomon@google.comb9086a02012-11-01 18:02:54 +0000356void bloat_quad(const SkPoint qpts[3], const SkMatrix* toDevice,
357 const SkMatrix* toSrc, Vertex verts[kVertsPerQuad]) {
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000358 GrAssert(!toDevice == !toSrc);
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000359 // original quad is specified by tri a,b,c
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000360 SkPoint a = qpts[0];
361 SkPoint b = qpts[1];
362 SkPoint c = qpts[2];
363
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000364 // this should be in the src space, not dev coords, when we have perspective
bsalomon@google.com19713172012-03-15 13:51:08 +0000365 GrPathUtils::QuadUVMatrix DevToUV(qpts);
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000366
367 if (toDevice) {
368 toDevice->mapPoints(&a, 1);
369 toDevice->mapPoints(&b, 1);
370 toDevice->mapPoints(&c, 1);
371 }
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000372 // make a new poly where we replace a and c by a 1-pixel wide edges orthog
373 // to edges ab and bc:
374 //
375 // before | after
376 // | b0
377 // b |
378 // |
379 // | a0 c0
380 // a c | a1 c1
381 //
382 // edges a0->b0 and b0->c0 are parallel to original edges a->b and b->c,
383 // respectively.
384 Vertex& a0 = verts[0];
385 Vertex& a1 = verts[1];
386 Vertex& b0 = verts[2];
387 Vertex& c0 = verts[3];
388 Vertex& c1 = verts[4];
389
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000390 SkVector ab = b;
391 ab -= a;
392 SkVector ac = c;
393 ac -= a;
394 SkVector cb = b;
395 cb -= c;
396
397 // We should have already handled degenerates
398 GrAssert(ab.length() > 0 && cb.length() > 0);
399
400 ab.normalize();
401 SkVector abN;
402 abN.setOrthog(ab, SkVector::kLeft_Side);
403 if (abN.dot(ac) > 0) {
404 abN.negate();
405 }
406
407 cb.normalize();
408 SkVector cbN;
409 cbN.setOrthog(cb, SkVector::kLeft_Side);
410 if (cbN.dot(ac) < 0) {
411 cbN.negate();
412 }
413
414 a0.fPos = a;
415 a0.fPos += abN;
416 a1.fPos = a;
417 a1.fPos -= abN;
418
419 c0.fPos = c;
420 c0.fPos += cbN;
421 c1.fPos = c;
422 c1.fPos -= cbN;
423
424 intersect_lines(a0.fPos, abN, c0.fPos, cbN, &b0.fPos);
425
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000426 if (toSrc) {
427 toSrc->mapPointsWithStride(&verts[0].fPos, sizeof(Vertex), kVertsPerQuad);
428 }
bsalomon@google.com19713172012-03-15 13:51:08 +0000429 DevToUV.apply<kVertsPerQuad, sizeof(Vertex), sizeof(GrPoint)>(verts);
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000430}
431
432void add_quads(const SkPoint p[3],
433 int subdiv,
bsalomon@google.comb9086a02012-11-01 18:02:54 +0000434 const SkMatrix* toDevice,
435 const SkMatrix* toSrc,
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000436 Vertex** vert) {
437 GrAssert(subdiv >= 0);
438 if (subdiv) {
439 SkPoint newP[5];
440 SkChopQuadAtHalf(p, newP);
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000441 add_quads(newP + 0, subdiv-1, toDevice, toSrc, vert);
442 add_quads(newP + 2, subdiv-1, toDevice, toSrc, vert);
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000443 } else {
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000444 bloat_quad(p, toDevice, toSrc, *vert);
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000445 *vert += kVertsPerQuad;
446 }
447}
448
449void add_line(const SkPoint p[2],
450 int rtHeight,
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000451 const SkMatrix* toSrc,
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000452 Vertex** vert) {
453 const SkPoint& a = p[0];
454 const SkPoint& b = p[1];
455
456 SkVector orthVec = b;
457 orthVec -= a;
458
459 if (orthVec.setLength(SK_Scalar1)) {
460 orthVec.setOrthog(orthVec);
461
bsalomon@google.com706f6682012-10-23 14:53:55 +0000462 SkScalar lineC = -(a.dot(orthVec));
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000463 for (int i = 0; i < kVertsPerLineSeg; ++i) {
464 (*vert)[i].fPos = (i < 2) ? a : b;
465 if (0 == i || 3 == i) {
466 (*vert)[i].fPos -= orthVec;
467 } else {
468 (*vert)[i].fPos += orthVec;
469 }
bsalomon@google.com706f6682012-10-23 14:53:55 +0000470 (*vert)[i].fLine.fA = orthVec.fX;
471 (*vert)[i].fLine.fB = orthVec.fY;
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000472 (*vert)[i].fLine.fC = lineC;
473 }
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000474 if (NULL != toSrc) {
475 toSrc->mapPointsWithStride(&(*vert)->fPos,
476 sizeof(Vertex),
477 kVertsPerLineSeg);
478 }
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000479 } else {
480 // just make it degenerate and likely offscreen
481 (*vert)[0].fPos.set(SK_ScalarMax, SK_ScalarMax);
482 (*vert)[1].fPos.set(SK_ScalarMax, SK_ScalarMax);
483 (*vert)[2].fPos.set(SK_ScalarMax, SK_ScalarMax);
484 (*vert)[3].fPos.set(SK_ScalarMax, SK_ScalarMax);
485 }
486
487 *vert += kVertsPerLineSeg;
488}
489
490}
491
bsalomon@google.comb3729422012-03-07 19:13:28 +0000492bool GrAAHairLinePathRenderer::createGeom(
493 const SkPath& path,
bsalomon@google.comb3729422012-03-07 19:13:28 +0000494 GrDrawTarget* target,
bsalomon@google.comb3729422012-03-07 19:13:28 +0000495 int* lineCnt,
496 int* quadCnt,
497 GrDrawTarget::AutoReleaseGeometry* arg) {
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000498 const GrDrawState& drawState = target->getDrawState();
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000499 int rtHeight = drawState.getRenderTarget()->height();
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000500
robertphillips@google.com7b112892012-07-31 15:18:21 +0000501 GrIRect devClipBounds;
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000502 target->getClip()->getConservativeBounds(drawState.getRenderTarget(),
robertphillips@google.com7b112892012-07-31 15:18:21 +0000503 &devClipBounds);
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000504
505 GrVertexLayout layout = GrDrawTarget::kEdge_VertexLayoutBit;
bsalomon@google.comb9086a02012-11-01 18:02:54 +0000506 SkMatrix viewM = drawState.getViewMatrix();
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000507
bsalomon@google.com92669012011-09-27 19:10:05 +0000508 PREALLOC_PTARRAY(128) lines;
509 PREALLOC_PTARRAY(128) quads;
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000510 IntArray qSubdivs;
bsalomon@google.com0f11e1a2012-10-08 14:48:36 +0000511 *quadCnt = generate_lines_and_quads(path, viewM, devClipBounds,
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000512 &lines, &quads, &qSubdivs);
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000513
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000514 *lineCnt = lines.count() / 2;
515 int vertCnt = kVertsPerLineSeg * *lineCnt + kVertsPerQuad * *quadCnt;
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000516
517 GrAssert(sizeof(Vertex) == GrDrawTarget::VertexSize(layout));
518
bsalomon@google.comb3729422012-03-07 19:13:28 +0000519 if (!arg->set(target, layout, vertCnt, 0)) {
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000520 return false;
521 }
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000522
bsalomon@google.comb3729422012-03-07 19:13:28 +0000523 Vertex* verts = reinterpret_cast<Vertex*>(arg->vertices());
524
bsalomon@google.comb9086a02012-11-01 18:02:54 +0000525 const SkMatrix* toDevice = NULL;
526 const SkMatrix* toSrc = NULL;
527 SkMatrix ivm;
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000528
529 if (viewM.hasPerspective()) {
530 if (viewM.invert(&ivm)) {
531 toDevice = &viewM;
532 toSrc = &ivm;
533 }
534 }
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000535
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000536 for (int i = 0; i < *lineCnt; ++i) {
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000537 add_line(&lines[2*i], rtHeight, toSrc, &verts);
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000538 }
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000539
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000540 int unsubdivQuadCnt = quads.count() / 3;
541 for (int i = 0; i < unsubdivQuadCnt; ++i) {
542 GrAssert(qSubdivs[i] >= 0);
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000543 add_quads(&quads[3*i], qSubdivs[i], toDevice, toSrc, &verts);
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000544 }
545
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000546 return true;
547}
548
robertphillips@google.com8a4fc402012-05-24 12:42:24 +0000549bool GrAAHairLinePathRenderer::canDrawPath(const SkPath& path,
sugoi@google.com12b4e272012-12-06 20:13:11 +0000550 const SkStroke& stroke,
robertphillips@google.com8a4fc402012-05-24 12:42:24 +0000551 const GrDrawTarget* target,
552 bool antiAlias) const {
sugoi@google.com12b4e272012-12-06 20:13:11 +0000553 if ((0 != stroke.getWidthIfStroked()) || !antiAlias) {
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000554 return false;
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000555 }
556
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000557 static const uint32_t gReqDerivMask = SkPath::kCubic_SegmentMask |
558 SkPath::kQuad_SegmentMask;
bsalomon@google.comf6601872012-08-28 21:11:35 +0000559 if (!target->getCaps().shaderDerivativeSupport() &&
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000560 (gReqDerivMask & path.getSegmentMasks())) {
561 return false;
562 }
563 return true;
564}
565
566bool GrAAHairLinePathRenderer::onDrawPath(const SkPath& path,
sugoi@google.com12b4e272012-12-06 20:13:11 +0000567 const SkStroke&,
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000568 GrDrawTarget* target,
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000569 bool antiAlias) {
570
571 int lineCnt;
572 int quadCnt;
bsalomon@google.comb3729422012-03-07 19:13:28 +0000573 GrDrawTarget::AutoReleaseGeometry arg;
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000574 if (!this->createGeom(path,
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000575 target,
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000576 &lineCnt,
bsalomon@google.comb3729422012-03-07 19:13:28 +0000577 &quadCnt,
578 &arg)) {
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000579 return false;
580 }
581
bsalomon@google.coma8347462012-10-08 18:59:39 +0000582 GrDrawState::AutoDeviceCoordDraw adcd;
bsalomon@google.com873ea0c2012-03-30 15:55:32 +0000583 GrDrawState* drawState = target->drawState();
bsalomon@google.coma8347462012-10-08 18:59:39 +0000584 // createGeom transforms the geometry to device space when the matrix does not have
585 // perspective.
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000586 if (!drawState->getViewMatrix().hasPerspective()) {
bsalomon@google.coma8347462012-10-08 18:59:39 +0000587 adcd.set(drawState);
588 if (!adcd.succeeded()) {
bsalomon@google.come3d32162012-07-20 13:37:06 +0000589 return false;
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000590 }
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000591 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000592
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000593 // TODO: See whether rendering lines as degenerate quads improves perf
594 // when we have a mix
bsalomon@google.coma8347462012-10-08 18:59:39 +0000595
596 GrDrawState::VertexEdgeType oldEdgeType = drawState->getVertexEdgeType();
597
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000598 target->setIndexSourceToBuffer(fLinesIndexBuffer);
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000599 int lines = 0;
600 int nBufLines = fLinesIndexBuffer->maxQuads();
bsalomon@google.coma8347462012-10-08 18:59:39 +0000601 drawState->setVertexEdgeType(GrDrawState::kHairLine_EdgeType);
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000602 while (lines < lineCnt) {
603 int n = GrMin(lineCnt - lines, nBufLines);
bsalomon@google.com47059542012-06-06 20:51:20 +0000604 target->drawIndexed(kTriangles_GrPrimitiveType,
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000605 kVertsPerLineSeg*lines, // startV
606 0, // startI
607 kVertsPerLineSeg*n, // vCount
608 kIdxsPerLineSeg*n); // iCount
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000609 lines += n;
610 }
611
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000612 target->setIndexSourceToBuffer(fQuadsIndexBuffer);
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000613 int quads = 0;
bsalomon@google.coma8347462012-10-08 18:59:39 +0000614 drawState->setVertexEdgeType(GrDrawState::kHairQuad_EdgeType);
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000615 while (quads < quadCnt) {
616 int n = GrMin(quadCnt - quads, kNumQuadsInIdxBuffer);
bsalomon@google.com47059542012-06-06 20:51:20 +0000617 target->drawIndexed(kTriangles_GrPrimitiveType,
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000618 4 * lineCnt + kVertsPerQuad*quads, // startV
619 0, // startI
620 kVertsPerQuad*n, // vCount
621 kIdxsPerQuad*n); // iCount
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000622 quads += n;
623 }
bsalomon@google.coma8347462012-10-08 18:59:39 +0000624 drawState->setVertexEdgeType(oldEdgeType);
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000625 return true;
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000626}
627