blob: 0a19d6ca2ef8a4cbc2a942c87baa58045ad0f1ba [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.comc26d94f2013-03-25 18:19:00 +000013#include "GrDrawTargetCaps.h"
commit-bot@chromium.org90c240a2013-04-02 17:57:21 +000014#include "GrEffect.h"
bsalomon@google.comaeb21602011-08-30 18:13:44 +000015#include "GrGpu.h"
16#include "GrIndexBuffer.h"
bsalomon@google.comdbeeac32011-09-12 14:59:34 +000017#include "GrPathUtils.h"
commit-bot@chromium.org90c240a2013-04-02 17:57:21 +000018#include "GrTBackendEffectFactory.h"
bsalomon@google.comaeb21602011-08-30 18:13:44 +000019#include "SkGeometry.h"
sugoi@google.com12b4e272012-12-06 20:13:11 +000020#include "SkStroke.h"
bsalomon@google.comaeb21602011-08-30 18:13:44 +000021#include "SkTemplates.h"
22
commit-bot@chromium.org90c240a2013-04-02 17:57:21 +000023#include "gl/GrGLEffect.h"
24#include "gl/GrGLSL.h"
bsalomon@google.com4647f902013-03-26 14:45:27 +000025
bsalomon@google.comaeb21602011-08-30 18:13:44 +000026namespace {
27// quadratics are rendered as 5-sided polys in order to bound the
28// AA stroke around the center-curve. See comments in push_quad_index_buffer and
29// bloat_quad.
30static const int kVertsPerQuad = 5;
31static const int kIdxsPerQuad = 9;
32
33static const int kVertsPerLineSeg = 4;
34static const int kIdxsPerLineSeg = 6;
35
36static const int kNumQuadsInIdxBuffer = 256;
37static const size_t kQuadIdxSBufize = kIdxsPerQuad *
38 sizeof(uint16_t) *
39 kNumQuadsInIdxBuffer;
40
41bool push_quad_index_data(GrIndexBuffer* qIdxBuffer) {
42 uint16_t* data = (uint16_t*) qIdxBuffer->lock();
43 bool tempData = NULL == data;
44 if (tempData) {
tomhudson@google.comc377baf2012-07-09 20:17:56 +000045 data = SkNEW_ARRAY(uint16_t, kNumQuadsInIdxBuffer * kIdxsPerQuad);
bsalomon@google.comaeb21602011-08-30 18:13:44 +000046 }
47 for (int i = 0; i < kNumQuadsInIdxBuffer; ++i) {
48
49 // Each quadratic is rendered as a five sided polygon. This poly bounds
50 // the quadratic's bounding triangle but has been expanded so that the
51 // 1-pixel wide area around the curve is inside the poly.
52 // If a,b,c are the original control points then the poly a0,b0,c0,c1,a1
53 // that is rendered would look like this:
54 // b0
55 // b
56 //
57 // a0 c0
58 // a c
59 // a1 c1
bsalomon@google.com0e5104c2012-04-10 16:20:41 +000060 // Each is drawn as three triangles specified by these 9 indices:
bsalomon@google.comaeb21602011-08-30 18:13:44 +000061 int baseIdx = i * kIdxsPerQuad;
62 uint16_t baseVert = (uint16_t)(i * kVertsPerQuad);
63 data[0 + baseIdx] = baseVert + 0; // a0
64 data[1 + baseIdx] = baseVert + 1; // a1
65 data[2 + baseIdx] = baseVert + 2; // b0
66 data[3 + baseIdx] = baseVert + 2; // b0
67 data[4 + baseIdx] = baseVert + 4; // c1
68 data[5 + baseIdx] = baseVert + 3; // c0
69 data[6 + baseIdx] = baseVert + 1; // a1
70 data[7 + baseIdx] = baseVert + 4; // c1
71 data[8 + baseIdx] = baseVert + 2; // b0
72 }
73 if (tempData) {
74 bool ret = qIdxBuffer->updateData(data, kQuadIdxSBufize);
75 delete[] data;
76 return ret;
77 } else {
78 qIdxBuffer->unlock();
79 return true;
80 }
81}
82}
83
84GrPathRenderer* GrAAHairLinePathRenderer::Create(GrContext* context) {
bsalomon@google.coma8a6a322011-09-23 14:19:58 +000085 const GrIndexBuffer* lIdxBuffer = context->getQuadIndexBuffer();
86 if (NULL == lIdxBuffer) {
bsalomon@google.comaeb21602011-08-30 18:13:44 +000087 return NULL;
88 }
bsalomon@google.coma8a6a322011-09-23 14:19:58 +000089 GrGpu* gpu = context->getGpu();
90 GrIndexBuffer* qIdxBuf = gpu->createIndexBuffer(kQuadIdxSBufize, false);
91 SkAutoTUnref<GrIndexBuffer> qIdxBuffer(qIdxBuf);
92 if (NULL == qIdxBuf ||
93 !push_quad_index_data(qIdxBuf)) {
94 return NULL;
95 }
tomhudson@google.comc377baf2012-07-09 20:17:56 +000096 return SkNEW_ARGS(GrAAHairLinePathRenderer,
97 (context, lIdxBuffer, qIdxBuf));
bsalomon@google.comaeb21602011-08-30 18:13:44 +000098}
99
100GrAAHairLinePathRenderer::GrAAHairLinePathRenderer(
101 const GrContext* context,
102 const GrIndexBuffer* linesIndexBuffer,
103 const GrIndexBuffer* quadsIndexBuffer) {
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000104 fLinesIndexBuffer = linesIndexBuffer;
105 linesIndexBuffer->ref();
106 fQuadsIndexBuffer = quadsIndexBuffer;
107 quadsIndexBuffer->ref();
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000108}
109
110GrAAHairLinePathRenderer::~GrAAHairLinePathRenderer() {
111 fLinesIndexBuffer->unref();
112 fQuadsIndexBuffer->unref();
113}
114
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000115namespace {
116
bsalomon@google.com49313f62011-09-14 13:54:05 +0000117typedef SkTArray<SkPoint, true> PtArray;
bsalomon@google.com92669012011-09-27 19:10:05 +0000118#define PREALLOC_PTARRAY(N) SkSTArray<(N),SkPoint, true>
bsalomon@google.com49313f62011-09-14 13:54:05 +0000119typedef SkTArray<int, true> IntArray;
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000120
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000121// Takes 178th time of logf on Z600 / VC2010
122int get_float_exp(float x) {
123 GR_STATIC_ASSERT(sizeof(int) == sizeof(float));
124#if GR_DEBUG
125 static bool tested;
126 if (!tested) {
127 tested = true;
128 GrAssert(get_float_exp(0.25f) == -2);
129 GrAssert(get_float_exp(0.3f) == -2);
130 GrAssert(get_float_exp(0.5f) == -1);
131 GrAssert(get_float_exp(1.f) == 0);
132 GrAssert(get_float_exp(2.f) == 1);
133 GrAssert(get_float_exp(2.5f) == 1);
134 GrAssert(get_float_exp(8.f) == 3);
135 GrAssert(get_float_exp(100.f) == 6);
136 GrAssert(get_float_exp(1000.f) == 9);
137 GrAssert(get_float_exp(1024.f) == 10);
138 GrAssert(get_float_exp(3000000.f) == 21);
139 }
140#endif
bsalomon@google.com2ec72802011-09-21 21:46:03 +0000141 const int* iptr = (const int*)&x;
142 return (((*iptr) & 0x7f800000) >> 23) - 127;
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000143}
144
145// we subdivide the quads to avoid huge overfill
146// if it returns -1 then should be drawn as lines
147int num_quad_subdivs(const SkPoint p[3]) {
148 static const SkScalar gDegenerateToLineTol = SK_Scalar1;
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000149 static const SkScalar gDegenerateToLineTolSqd =
bsalomon@google.com46a2a1e2011-09-06 22:10:52 +0000150 SkScalarMul(gDegenerateToLineTol, gDegenerateToLineTol);
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000151
bsalomon@google.com46a2a1e2011-09-06 22:10:52 +0000152 if (p[0].distanceToSqd(p[1]) < gDegenerateToLineTolSqd ||
153 p[1].distanceToSqd(p[2]) < gDegenerateToLineTolSqd) {
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000154 return -1;
155 }
bsalomon@google.com46a2a1e2011-09-06 22:10:52 +0000156
bsalomon@google.com81712882012-11-01 17:12:34 +0000157 SkScalar dsqd = p[1].distanceToLineBetweenSqd(p[0], p[2]);
bsalomon@google.com46a2a1e2011-09-06 22:10:52 +0000158 if (dsqd < gDegenerateToLineTolSqd) {
159 return -1;
160 }
161
162 if (p[2].distanceToLineBetweenSqd(p[1], p[0]) < gDegenerateToLineTolSqd) {
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000163 return -1;
164 }
165
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000166 // tolerance of triangle height in pixels
167 // tuned on windows Quadro FX 380 / Z600
168 // trade off of fill vs cpu time on verts
169 // maybe different when do this using gpu (geo or tess shaders)
170 static const SkScalar gSubdivTol = 175 * SK_Scalar1;
171
robertphillips@google.com7460b372012-04-25 16:54:51 +0000172 if (dsqd <= SkScalarMul(gSubdivTol, gSubdivTol)) {
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000173 return 0;
174 } else {
robertphillips@google.com87379e12013-03-29 12:11:10 +0000175 static const int kMaxSub = 4;
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000176 // subdividing the quad reduces d by 4. so we want x = log4(d/tol)
177 // = log4(d*d/tol*tol)/2
178 // = log2(d*d/tol*tol)
179
180#ifdef SK_SCALAR_IS_FLOAT
181 // +1 since we're ignoring the mantissa contribution.
182 int log = get_float_exp(dsqd/(gSubdivTol*gSubdivTol)) + 1;
183 log = GrMin(GrMax(0, log), kMaxSub);
184 return log;
185#else
robertphillips@google.com7460b372012-04-25 16:54:51 +0000186 SkScalar log = SkScalarLog(
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000187 SkScalarDiv(dsqd,
robertphillips@google.com7460b372012-04-25 16:54:51 +0000188 SkScalarMul(gSubdivTol, gSubdivTol)));
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000189 static const SkScalar conv = SkScalarInvert(SkScalarLog(2));
190 log = SkScalarMul(log, conv);
191 return GrMin(GrMax(0, SkScalarCeilToInt(log)),kMaxSub);
192#endif
193 }
194}
195
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000196/**
197 * Generates the lines and quads to be rendered. Lines are always recorded in
198 * device space. We will do a device space bloat to account for the 1pixel
199 * thickness.
200 * Quads are recorded in device space unless m contains
201 * perspective, then in they are in src space. We do this because we will
202 * subdivide large quads to reduce over-fill. This subdivision has to be
203 * performed before applying the perspective matrix.
204 */
205int generate_lines_and_quads(const SkPath& path,
206 const SkMatrix& m,
robertphillips@google.com7b112892012-07-31 15:18:21 +0000207 const GrIRect& devClipBounds,
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000208 PtArray* lines,
209 PtArray* quads,
210 IntArray* quadSubdivCnts) {
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000211 SkPath::Iter iter(path, false);
212
213 int totalQuadCount = 0;
214 GrRect bounds;
215 GrIRect ibounds;
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000216
217 bool persp = m.hasPerspective();
218
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000219 for (;;) {
220 GrPoint pts[4];
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000221 GrPoint devPts[4];
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000222 GrPathCmd cmd = (GrPathCmd)iter.next(pts);
223 switch (cmd) {
224 case kMove_PathCmd:
225 break;
226 case kLine_PathCmd:
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000227 m.mapPoints(devPts, pts, 2);
228 bounds.setBounds(devPts, 2);
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000229 bounds.outset(SK_Scalar1, SK_Scalar1);
230 bounds.roundOut(&ibounds);
robertphillips@google.com7b112892012-07-31 15:18:21 +0000231 if (SkIRect::Intersects(devClipBounds, ibounds)) {
bsalomon@google.coma996fec2011-09-13 18:49:13 +0000232 SkPoint* pts = lines->push_back_n(2);
233 pts[0] = devPts[0];
234 pts[1] = devPts[1];
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000235 }
236 break;
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000237 case kQuadratic_PathCmd:
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000238 m.mapPoints(devPts, pts, 3);
239 bounds.setBounds(devPts, 3);
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000240 bounds.outset(SK_Scalar1, SK_Scalar1);
241 bounds.roundOut(&ibounds);
robertphillips@google.com7b112892012-07-31 15:18:21 +0000242 if (SkIRect::Intersects(devClipBounds, ibounds)) {
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000243 int subdiv = num_quad_subdivs(devPts);
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000244 GrAssert(subdiv >= -1);
245 if (-1 == subdiv) {
bsalomon@google.coma996fec2011-09-13 18:49:13 +0000246 SkPoint* pts = lines->push_back_n(4);
247 pts[0] = devPts[0];
248 pts[1] = devPts[1];
249 pts[2] = devPts[1];
250 pts[3] = devPts[2];
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000251 } else {
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000252 // when in perspective keep quads in src space
253 SkPoint* qPts = persp ? pts : devPts;
bsalomon@google.coma996fec2011-09-13 18:49:13 +0000254 SkPoint* pts = quads->push_back_n(3);
255 pts[0] = qPts[0];
256 pts[1] = qPts[1];
257 pts[2] = qPts[2];
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000258 quadSubdivCnts->push_back() = subdiv;
259 totalQuadCount += 1 << subdiv;
260 }
261 }
bsalomon@google.coma51ab842012-07-10 19:53:34 +0000262 break;
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000263 case kCubic_PathCmd:
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000264 m.mapPoints(devPts, pts, 4);
265 bounds.setBounds(devPts, 4);
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000266 bounds.outset(SK_Scalar1, SK_Scalar1);
267 bounds.roundOut(&ibounds);
robertphillips@google.com7b112892012-07-31 15:18:21 +0000268 if (SkIRect::Intersects(devClipBounds, ibounds)) {
bsalomon@google.com92669012011-09-27 19:10:05 +0000269 PREALLOC_PTARRAY(32) q;
bsalomon@google.coma51ab842012-07-10 19:53:34 +0000270 // we don't need a direction if we aren't constraining the subdivision
271 static const SkPath::Direction kDummyDir = SkPath::kCCW_Direction;
bsalomon@google.com69cc6ad2012-01-17 14:25:10 +0000272 // We convert cubics to quadratics (for now).
273 // In perspective have to do conversion in src space.
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000274 if (persp) {
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000275 SkScalar tolScale =
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000276 GrPathUtils::scaleToleranceToSrc(SK_Scalar1, m,
277 path.getBounds());
bsalomon@google.coma51ab842012-07-10 19:53:34 +0000278 GrPathUtils::convertCubicToQuads(pts, tolScale, false, kDummyDir, &q);
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000279 } else {
bsalomon@google.coma51ab842012-07-10 19:53:34 +0000280 GrPathUtils::convertCubicToQuads(devPts, SK_Scalar1, false, kDummyDir, &q);
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000281 }
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000282 for (int i = 0; i < q.count(); i += 3) {
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000283 SkPoint* qInDevSpace;
284 // bounds has to be calculated in device space, but q is
285 // in src space when there is perspective.
286 if (persp) {
287 m.mapPoints(devPts, &q[i], 3);
288 bounds.setBounds(devPts, 3);
289 qInDevSpace = devPts;
290 } else {
291 bounds.setBounds(&q[i], 3);
292 qInDevSpace = &q[i];
293 }
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000294 bounds.outset(SK_Scalar1, SK_Scalar1);
295 bounds.roundOut(&ibounds);
robertphillips@google.com7b112892012-07-31 15:18:21 +0000296 if (SkIRect::Intersects(devClipBounds, ibounds)) {
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000297 int subdiv = num_quad_subdivs(qInDevSpace);
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000298 GrAssert(subdiv >= -1);
299 if (-1 == subdiv) {
bsalomon@google.coma996fec2011-09-13 18:49:13 +0000300 SkPoint* pts = lines->push_back_n(4);
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000301 // lines should always be in device coords
bsalomon@google.coma996fec2011-09-13 18:49:13 +0000302 pts[0] = qInDevSpace[0];
303 pts[1] = qInDevSpace[1];
304 pts[2] = qInDevSpace[1];
305 pts[3] = qInDevSpace[2];
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000306 } else {
bsalomon@google.coma996fec2011-09-13 18:49:13 +0000307 SkPoint* pts = quads->push_back_n(3);
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000308 // q is already in src space when there is no
309 // perspective and dev coords otherwise.
bsalomon@google.coma996fec2011-09-13 18:49:13 +0000310 pts[0] = q[0 + i];
311 pts[1] = q[1 + i];
312 pts[2] = q[2 + i];
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000313 quadSubdivCnts->push_back() = subdiv;
314 totalQuadCount += 1 << subdiv;
315 }
316 }
317 }
318 }
bsalomon@google.coma51ab842012-07-10 19:53:34 +0000319 break;
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000320 case kClose_PathCmd:
321 break;
322 case kEnd_PathCmd:
323 return totalQuadCount;
324 }
325 }
326}
327
328struct Vertex {
329 GrPoint fPos;
330 union {
331 struct {
bsalomon@google.com81712882012-11-01 17:12:34 +0000332 SkScalar fA;
333 SkScalar fB;
334 SkScalar fC;
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000335 } fLine;
336 GrVec fQuadCoord;
337 struct {
bsalomon@google.com81712882012-11-01 17:12:34 +0000338 SkScalar fBogus[4];
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000339 };
340 };
341};
342GR_STATIC_ASSERT(sizeof(Vertex) == 3 * sizeof(GrPoint));
343
344void intersect_lines(const SkPoint& ptA, const SkVector& normA,
345 const SkPoint& ptB, const SkVector& normB,
346 SkPoint* result) {
347
348 SkScalar lineAW = -normA.dot(ptA);
349 SkScalar lineBW = -normB.dot(ptB);
350
351 SkScalar wInv = SkScalarMul(normA.fX, normB.fY) -
352 SkScalarMul(normA.fY, normB.fX);
353 wInv = SkScalarInvert(wInv);
354
355 result->fX = SkScalarMul(normA.fY, lineBW) - SkScalarMul(lineAW, normB.fY);
356 result->fX = SkScalarMul(result->fX, wInv);
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000357
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000358 result->fY = SkScalarMul(lineAW, normB.fX) - SkScalarMul(normA.fX, lineBW);
359 result->fY = SkScalarMul(result->fY, wInv);
360}
361
bsalomon@google.comb9086a02012-11-01 18:02:54 +0000362void bloat_quad(const SkPoint qpts[3], const SkMatrix* toDevice,
363 const SkMatrix* toSrc, Vertex verts[kVertsPerQuad]) {
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000364 GrAssert(!toDevice == !toSrc);
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000365 // original quad is specified by tri a,b,c
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000366 SkPoint a = qpts[0];
367 SkPoint b = qpts[1];
368 SkPoint c = qpts[2];
369
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000370 // this should be in the src space, not dev coords, when we have perspective
bsalomon@google.com19713172012-03-15 13:51:08 +0000371 GrPathUtils::QuadUVMatrix DevToUV(qpts);
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000372
373 if (toDevice) {
374 toDevice->mapPoints(&a, 1);
375 toDevice->mapPoints(&b, 1);
376 toDevice->mapPoints(&c, 1);
377 }
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000378 // make a new poly where we replace a and c by a 1-pixel wide edges orthog
379 // to edges ab and bc:
380 //
381 // before | after
382 // | b0
383 // b |
384 // |
385 // | a0 c0
386 // a c | a1 c1
387 //
388 // edges a0->b0 and b0->c0 are parallel to original edges a->b and b->c,
389 // respectively.
390 Vertex& a0 = verts[0];
391 Vertex& a1 = verts[1];
392 Vertex& b0 = verts[2];
393 Vertex& c0 = verts[3];
394 Vertex& c1 = verts[4];
395
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000396 SkVector ab = b;
397 ab -= a;
398 SkVector ac = c;
399 ac -= a;
400 SkVector cb = b;
401 cb -= c;
402
403 // We should have already handled degenerates
404 GrAssert(ab.length() > 0 && cb.length() > 0);
405
406 ab.normalize();
407 SkVector abN;
408 abN.setOrthog(ab, SkVector::kLeft_Side);
409 if (abN.dot(ac) > 0) {
410 abN.negate();
411 }
412
413 cb.normalize();
414 SkVector cbN;
415 cbN.setOrthog(cb, SkVector::kLeft_Side);
416 if (cbN.dot(ac) < 0) {
417 cbN.negate();
418 }
419
420 a0.fPos = a;
421 a0.fPos += abN;
422 a1.fPos = a;
423 a1.fPos -= abN;
424
425 c0.fPos = c;
426 c0.fPos += cbN;
427 c1.fPos = c;
428 c1.fPos -= cbN;
429
430 intersect_lines(a0.fPos, abN, c0.fPos, cbN, &b0.fPos);
431
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000432 if (toSrc) {
433 toSrc->mapPointsWithStride(&verts[0].fPos, sizeof(Vertex), kVertsPerQuad);
434 }
bsalomon@google.com19713172012-03-15 13:51:08 +0000435 DevToUV.apply<kVertsPerQuad, sizeof(Vertex), sizeof(GrPoint)>(verts);
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000436}
437
438void add_quads(const SkPoint p[3],
439 int subdiv,
bsalomon@google.comb9086a02012-11-01 18:02:54 +0000440 const SkMatrix* toDevice,
441 const SkMatrix* toSrc,
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000442 Vertex** vert) {
443 GrAssert(subdiv >= 0);
444 if (subdiv) {
445 SkPoint newP[5];
446 SkChopQuadAtHalf(p, newP);
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000447 add_quads(newP + 0, subdiv-1, toDevice, toSrc, vert);
448 add_quads(newP + 2, subdiv-1, toDevice, toSrc, vert);
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000449 } else {
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000450 bloat_quad(p, toDevice, toSrc, *vert);
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000451 *vert += kVertsPerQuad;
452 }
453}
454
455void add_line(const SkPoint p[2],
456 int rtHeight,
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000457 const SkMatrix* toSrc,
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000458 Vertex** vert) {
459 const SkPoint& a = p[0];
460 const SkPoint& b = p[1];
461
462 SkVector orthVec = b;
463 orthVec -= a;
464
465 if (orthVec.setLength(SK_Scalar1)) {
466 orthVec.setOrthog(orthVec);
467
bsalomon@google.com706f6682012-10-23 14:53:55 +0000468 SkScalar lineC = -(a.dot(orthVec));
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000469 for (int i = 0; i < kVertsPerLineSeg; ++i) {
470 (*vert)[i].fPos = (i < 2) ? a : b;
471 if (0 == i || 3 == i) {
472 (*vert)[i].fPos -= orthVec;
473 } else {
474 (*vert)[i].fPos += orthVec;
475 }
bsalomon@google.com706f6682012-10-23 14:53:55 +0000476 (*vert)[i].fLine.fA = orthVec.fX;
477 (*vert)[i].fLine.fB = orthVec.fY;
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000478 (*vert)[i].fLine.fC = lineC;
479 }
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000480 if (NULL != toSrc) {
481 toSrc->mapPointsWithStride(&(*vert)->fPos,
482 sizeof(Vertex),
483 kVertsPerLineSeg);
484 }
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000485 } else {
486 // just make it degenerate and likely offscreen
487 (*vert)[0].fPos.set(SK_ScalarMax, SK_ScalarMax);
488 (*vert)[1].fPos.set(SK_ScalarMax, SK_ScalarMax);
489 (*vert)[2].fPos.set(SK_ScalarMax, SK_ScalarMax);
490 (*vert)[3].fPos.set(SK_ScalarMax, SK_ScalarMax);
491 }
492
493 *vert += kVertsPerLineSeg;
494}
495
496}
497
commit-bot@chromium.org90c240a2013-04-02 17:57:21 +0000498///////////////////////////////////////////////////////////////////////////////
499
500/**
501 * The output of this effect is a hairline edge for quadratics.
502 * Quadratic specified by 0=u^2-v canonical coords. u and v are the first
503 * two components of the vertex attribute. Uses unsigned distance.
skia.committer@gmail.com041e2db2013-04-03 07:01:14 +0000504 * Coverage is min(0, 1-distance). 3rd & 4th component unused.
505 * Requires shader derivative instruction support.
commit-bot@chromium.org90c240a2013-04-02 17:57:21 +0000506 */
507class HairQuadEdgeEffect : public GrEffect {
508public:
509
510 static GrEffectRef* Create() {
511 // we go through this so we only have one copy of each effect
commit-bot@chromium.org5d01bec2013-04-02 20:48:38 +0000512 static SkAutoTUnref<GrEffectRef> gHairQuadEdgeEffectRef(
513 CreateEffectRef(AutoEffectUnref(SkNEW(HairQuadEdgeEffect))));
skia.committer@gmail.com041e2db2013-04-03 07:01:14 +0000514
commit-bot@chromium.org5d01bec2013-04-02 20:48:38 +0000515 gHairQuadEdgeEffectRef.get()->ref();
commit-bot@chromium.org90c240a2013-04-02 17:57:21 +0000516 return gHairQuadEdgeEffectRef;
517 }
518
519 virtual ~HairQuadEdgeEffect() {}
520
521 static const char* Name() { return "HairQuadEdge"; }
522
skia.committer@gmail.com041e2db2013-04-03 07:01:14 +0000523 virtual void getConstantColorComponents(GrColor* color,
commit-bot@chromium.org90c240a2013-04-02 17:57:21 +0000524 uint32_t* validFlags) const SK_OVERRIDE {
525 *validFlags = 0;
526 }
527
528 virtual const GrBackendEffectFactory& getFactory() const SK_OVERRIDE {
529 return GrTBackendEffectFactory<HairQuadEdgeEffect>::getInstance();
530 }
531
532 class GLEffect : public GrGLEffect {
533 public:
534 GLEffect(const GrBackendEffectFactory& factory, const GrDrawEffect&)
535 : INHERITED (factory) {}
536
537 virtual void emitCode(GrGLShaderBuilder* builder,
538 const GrDrawEffect& drawEffect,
539 EffectKey key,
540 const char* outputColor,
541 const char* inputColor,
542 const TextureSamplerArray& samplers) SK_OVERRIDE {
543 const char *vsName, *fsName;
544 const SkString* attrName =
545 builder->getEffectAttributeName(drawEffect.getVertexAttribIndices()[0]);
546 builder->fsCodeAppendf("\t\tfloat edgeAlpha;\n");
547
548 SkAssertResult(builder->enableFeature(
549 GrGLShaderBuilder::kStandardDerivatives_GLSLFeature));
550 builder->addVarying(kVec4f_GrSLType, "HairQuadEdge", &vsName, &fsName);
551
552 builder->fsCodeAppendf("\t\tvec2 duvdx = dFdx(%s.xy);\n", fsName);
553 builder->fsCodeAppendf("\t\tvec2 duvdy = dFdy(%s.xy);\n", fsName);
554 builder->fsCodeAppendf("\t\tvec2 gF = vec2(2.0*%s.x*duvdx.x - duvdx.y,\n"
555 "\t\t 2.0*%s.x*duvdy.x - duvdy.y);\n",
556 fsName, fsName);
557 builder->fsCodeAppendf("\t\tedgeAlpha = (%s.x*%s.x - %s.y);\n", fsName, fsName,
558 fsName);
559 builder->fsCodeAppend("\t\tedgeAlpha = sqrt(edgeAlpha*edgeAlpha / dot(gF, gF));\n");
560 builder->fsCodeAppend("\t\tedgeAlpha = max(1.0 - edgeAlpha, 0.0);\n");
561
562 SkString modulate;
bsalomon@google.com018f1792013-04-18 19:36:09 +0000563 GrGLSLModulatef<4>(&modulate, inputColor, "edgeAlpha");
commit-bot@chromium.org90c240a2013-04-02 17:57:21 +0000564 builder->fsCodeAppendf("\t%s = %s;\n", outputColor, modulate.c_str());
565
566 builder->vsCodeAppendf("\t%s = %s;\n", vsName, attrName->c_str());
567 }
568
569 static inline EffectKey GenKey(const GrDrawEffect& drawEffect, const GrGLCaps&) {
570 return 0x0;
571 }
572
573 virtual void setData(const GrGLUniformManager&, const GrDrawEffect&) SK_OVERRIDE {}
574
575 private:
576 typedef GrGLEffect INHERITED;
577 };
578
579private:
skia.committer@gmail.com041e2db2013-04-03 07:01:14 +0000580 HairQuadEdgeEffect() {
581 this->addVertexAttrib(kVec4f_GrSLType);
commit-bot@chromium.org90c240a2013-04-02 17:57:21 +0000582 }
583
584 virtual bool onIsEqual(const GrEffect& other) const SK_OVERRIDE {
585 return true;
586 }
587
588 GR_DECLARE_EFFECT_TEST;
589
590 typedef GrEffect INHERITED;
591};
592
593GR_DEFINE_EFFECT_TEST(HairQuadEdgeEffect);
594
595GrEffectRef* HairQuadEdgeEffect::TestCreate(SkMWCRandom* random,
596 GrContext*,
597 const GrDrawTargetCaps& caps,
598 GrTexture*[]) {
599 // Doesn't work without derivative instructions.
600 return caps.shaderDerivativeSupport() ? HairQuadEdgeEffect::Create() : NULL;}
601
602///////////////////////////////////////////////////////////////////////////////
603
604/**
skia.committer@gmail.com041e2db2013-04-03 07:01:14 +0000605 * The output of this effect is a 1-pixel wide line.
606 * Input is 2D implicit device coord line eq (a*x + b*y +c = 0). 4th component unused.
commit-bot@chromium.org90c240a2013-04-02 17:57:21 +0000607 */
608class HairLineEdgeEffect : public GrEffect {
609public:
610
611 static GrEffectRef* Create() {
612 // we go through this so we only have one copy of each effect
commit-bot@chromium.org5d01bec2013-04-02 20:48:38 +0000613 static SkAutoTUnref<GrEffectRef> gHairLineEdgeEffectRef(
614 CreateEffectRef(AutoEffectUnref(SkNEW(HairLineEdgeEffect))));
skia.committer@gmail.com041e2db2013-04-03 07:01:14 +0000615
commit-bot@chromium.org5d01bec2013-04-02 20:48:38 +0000616 gHairLineEdgeEffectRef.get()->ref();
commit-bot@chromium.org90c240a2013-04-02 17:57:21 +0000617 return gHairLineEdgeEffectRef;
618 }
619
620 virtual ~HairLineEdgeEffect() {}
621
622 static const char* Name() { return "HairLineEdge"; }
623
skia.committer@gmail.com041e2db2013-04-03 07:01:14 +0000624 virtual void getConstantColorComponents(GrColor* color,
commit-bot@chromium.org90c240a2013-04-02 17:57:21 +0000625 uint32_t* validFlags) const SK_OVERRIDE {
626 *validFlags = 0;
627 }
628
629 virtual const GrBackendEffectFactory& getFactory() const SK_OVERRIDE {
630 return GrTBackendEffectFactory<HairLineEdgeEffect>::getInstance();
631 }
632
633 class GLEffect : public GrGLEffect {
634 public:
635 GLEffect(const GrBackendEffectFactory& factory, const GrDrawEffect&)
636 : INHERITED (factory) {}
637
638 virtual void emitCode(GrGLShaderBuilder* builder,
639 const GrDrawEffect& drawEffect,
640 EffectKey key,
641 const char* outputColor,
642 const char* inputColor,
643 const TextureSamplerArray& samplers) SK_OVERRIDE {
644 const char *vsName, *fsName;
645 const SkString* attrName =
646 builder->getEffectAttributeName(drawEffect.getVertexAttribIndices()[0]);
647 builder->fsCodeAppendf("\t\tfloat edgeAlpha;\n");
648
649 builder->addVarying(kVec4f_GrSLType, "HairLineEdge", &vsName, &fsName);
650
651 builder->fsCodeAppendf("\t\tedgeAlpha = abs(dot(vec3(%s.xy,1), %s.xyz));\n",
652 builder->fragmentPosition(), fsName);
653 builder->fsCodeAppendf("\t\tedgeAlpha = max(1.0 - edgeAlpha, 0.0);\n");
654
655 SkString modulate;
bsalomon@google.com018f1792013-04-18 19:36:09 +0000656 GrGLSLModulatef<4>(&modulate, inputColor, "edgeAlpha");
commit-bot@chromium.org90c240a2013-04-02 17:57:21 +0000657 builder->fsCodeAppendf("\t%s = %s;\n", outputColor, modulate.c_str());
658
659 builder->vsCodeAppendf("\t%s = %s;\n", vsName, attrName->c_str());
660 }
661
662 static inline EffectKey GenKey(const GrDrawEffect& drawEffect, const GrGLCaps&) {
663 return 0x0;
664 }
665
666 virtual void setData(const GrGLUniformManager&, const GrDrawEffect&) SK_OVERRIDE {}
667
668 private:
669 typedef GrGLEffect INHERITED;
670 };
671
672private:
skia.committer@gmail.com041e2db2013-04-03 07:01:14 +0000673 HairLineEdgeEffect() {
674 this->addVertexAttrib(kVec4f_GrSLType);
commit-bot@chromium.org90c240a2013-04-02 17:57:21 +0000675 }
676
677 virtual bool onIsEqual(const GrEffect& other) const SK_OVERRIDE {
678 return true;
679 }
680
681 GR_DECLARE_EFFECT_TEST;
682
683 typedef GrEffect INHERITED;
684};
685
686GR_DEFINE_EFFECT_TEST(HairLineEdgeEffect);
687
688GrEffectRef* HairLineEdgeEffect::TestCreate(SkMWCRandom* random,
689 GrContext*,
690 const GrDrawTargetCaps& caps,
691 GrTexture*[]) {
692 return HairLineEdgeEffect::Create();
693}
694
695///////////////////////////////////////////////////////////////////////////////
696
robertphillips@google.com42903302013-04-20 12:26:07 +0000697namespace {
698
699// position + edge
700extern const GrVertexAttrib gHairlineAttribs[] = {
701 {kVec2f_GrVertexAttribType, 0, kPosition_GrVertexAttribBinding},
702 {kVec4f_GrVertexAttribType, sizeof(GrPoint), kEffect_GrVertexAttribBinding}
703};
704
705};
706
bsalomon@google.comb3729422012-03-07 19:13:28 +0000707bool GrAAHairLinePathRenderer::createGeom(
708 const SkPath& path,
bsalomon@google.comb3729422012-03-07 19:13:28 +0000709 GrDrawTarget* target,
bsalomon@google.comb3729422012-03-07 19:13:28 +0000710 int* lineCnt,
711 int* quadCnt,
712 GrDrawTarget::AutoReleaseGeometry* arg) {
jvanverth@google.com9b855c72013-03-01 18:21:22 +0000713 GrDrawState* drawState = target->drawState();
714 int rtHeight = drawState->getRenderTarget()->height();
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000715
robertphillips@google.com7b112892012-07-31 15:18:21 +0000716 GrIRect devClipBounds;
jvanverth@google.com9b855c72013-03-01 18:21:22 +0000717 target->getClip()->getConservativeBounds(drawState->getRenderTarget(),
robertphillips@google.com7b112892012-07-31 15:18:21 +0000718 &devClipBounds);
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000719
jvanverth@google.com9b855c72013-03-01 18:21:22 +0000720 SkMatrix viewM = drawState->getViewMatrix();
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000721
bsalomon@google.com92669012011-09-27 19:10:05 +0000722 PREALLOC_PTARRAY(128) lines;
723 PREALLOC_PTARRAY(128) quads;
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000724 IntArray qSubdivs;
bsalomon@google.com0f11e1a2012-10-08 14:48:36 +0000725 *quadCnt = generate_lines_and_quads(path, viewM, devClipBounds,
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000726 &lines, &quads, &qSubdivs);
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000727
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000728 *lineCnt = lines.count() / 2;
729 int vertCnt = kVertsPerLineSeg * *lineCnt + kVertsPerQuad * *quadCnt;
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000730
robertphillips@google.com42903302013-04-20 12:26:07 +0000731 target->drawState()->setVertexAttribs<gHairlineAttribs>(SK_ARRAY_COUNT(gHairlineAttribs));
jvanverth@google.comb75b0a02013-02-05 20:33:30 +0000732 GrAssert(sizeof(Vertex) == target->getDrawState().getVertexSize());
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000733
jvanverth@google.comb75b0a02013-02-05 20:33:30 +0000734 if (!arg->set(target, vertCnt, 0)) {
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000735 return false;
736 }
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000737
bsalomon@google.comb3729422012-03-07 19:13:28 +0000738 Vertex* verts = reinterpret_cast<Vertex*>(arg->vertices());
739
bsalomon@google.comb9086a02012-11-01 18:02:54 +0000740 const SkMatrix* toDevice = NULL;
741 const SkMatrix* toSrc = NULL;
742 SkMatrix ivm;
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000743
744 if (viewM.hasPerspective()) {
745 if (viewM.invert(&ivm)) {
746 toDevice = &viewM;
747 toSrc = &ivm;
748 }
749 }
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000750
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000751 for (int i = 0; i < *lineCnt; ++i) {
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000752 add_line(&lines[2*i], rtHeight, toSrc, &verts);
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000753 }
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000754
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000755 int unsubdivQuadCnt = quads.count() / 3;
756 for (int i = 0; i < unsubdivQuadCnt; ++i) {
757 GrAssert(qSubdivs[i] >= 0);
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000758 add_quads(&quads[3*i], qSubdivs[i], toDevice, toSrc, &verts);
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000759 }
760
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000761 return true;
762}
763
robertphillips@google.com8a4fc402012-05-24 12:42:24 +0000764bool GrAAHairLinePathRenderer::canDrawPath(const SkPath& path,
sugoi@google.com5f74cf82012-12-17 21:16:45 +0000765 const SkStrokeRec& stroke,
robertphillips@google.com8a4fc402012-05-24 12:42:24 +0000766 const GrDrawTarget* target,
767 bool antiAlias) const {
sugoi@google.com5f74cf82012-12-17 21:16:45 +0000768 if (!stroke.isHairlineStyle() || !antiAlias) {
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000769 return false;
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000770 }
771
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000772 static const uint32_t gReqDerivMask = SkPath::kCubic_SegmentMask |
773 SkPath::kQuad_SegmentMask;
bsalomon@google.combcce8922013-03-25 15:38:39 +0000774 if (!target->caps()->shaderDerivativeSupport() &&
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000775 (gReqDerivMask & path.getSegmentMasks())) {
776 return false;
777 }
778 return true;
779}
780
781bool GrAAHairLinePathRenderer::onDrawPath(const SkPath& path,
sugoi@google.com5f74cf82012-12-17 21:16:45 +0000782 const SkStrokeRec&,
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000783 GrDrawTarget* target,
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000784 bool antiAlias) {
785
786 int lineCnt;
787 int quadCnt;
bsalomon@google.comb3729422012-03-07 19:13:28 +0000788 GrDrawTarget::AutoReleaseGeometry arg;
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000789 if (!this->createGeom(path,
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000790 target,
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000791 &lineCnt,
bsalomon@google.comb3729422012-03-07 19:13:28 +0000792 &quadCnt,
793 &arg)) {
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000794 return false;
795 }
796
bsalomon@google.com4647f902013-03-26 14:45:27 +0000797 GrDrawTarget::AutoStateRestore asr(target, GrDrawTarget::kPreserve_ASRInit);
bsalomon@google.com873ea0c2012-03-30 15:55:32 +0000798 GrDrawState* drawState = target->drawState();
bsalomon@google.com4647f902013-03-26 14:45:27 +0000799
800 GrDrawState::AutoDeviceCoordDraw adcd;
bsalomon@google.coma8347462012-10-08 18:59:39 +0000801 // createGeom transforms the geometry to device space when the matrix does not have
802 // perspective.
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000803 if (!drawState->getViewMatrix().hasPerspective()) {
bsalomon@google.coma8347462012-10-08 18:59:39 +0000804 adcd.set(drawState);
805 if (!adcd.succeeded()) {
bsalomon@google.come3d32162012-07-20 13:37:06 +0000806 return false;
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000807 }
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000808 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000809
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000810 // TODO: See whether rendering lines as degenerate quads improves perf
811 // when we have a mix
bsalomon@google.coma8347462012-10-08 18:59:39 +0000812
bsalomon@google.com4647f902013-03-26 14:45:27 +0000813 enum {
814 // the edge effects share this stage with glyph rendering
815 // (kGlyphMaskStage in GrTextContext) && SW path rendering
816 // (kPathMaskStage in GrSWMaskHelper)
817 kEdgeEffectStage = GrPaint::kTotalStages,
818 };
819 static const int kEdgeAttrIndex = 1;
bsalomon@google.coma8347462012-10-08 18:59:39 +0000820
commit-bot@chromium.org90c240a2013-04-02 17:57:21 +0000821 GrEffectRef* hairLineEffect = HairLineEdgeEffect::Create();
822 GrEffectRef* hairQuadEffect = HairQuadEdgeEffect::Create();
skia.committer@gmail.com37cbc7f2013-03-27 07:01:04 +0000823
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000824 target->setIndexSourceToBuffer(fLinesIndexBuffer);
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000825 int lines = 0;
826 int nBufLines = fLinesIndexBuffer->maxQuads();
bsalomon@google.com4647f902013-03-26 14:45:27 +0000827 drawState->setEffect(kEdgeEffectStage, hairLineEffect, kEdgeAttrIndex)->unref();
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000828 while (lines < lineCnt) {
829 int n = GrMin(lineCnt - lines, nBufLines);
bsalomon@google.com47059542012-06-06 20:51:20 +0000830 target->drawIndexed(kTriangles_GrPrimitiveType,
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000831 kVertsPerLineSeg*lines, // startV
832 0, // startI
833 kVertsPerLineSeg*n, // vCount
834 kIdxsPerLineSeg*n); // iCount
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000835 lines += n;
836 }
837
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000838 target->setIndexSourceToBuffer(fQuadsIndexBuffer);
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000839 int quads = 0;
bsalomon@google.com4647f902013-03-26 14:45:27 +0000840 drawState->setEffect(kEdgeEffectStage, hairQuadEffect, kEdgeAttrIndex)->unref();
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000841 while (quads < quadCnt) {
842 int n = GrMin(quadCnt - quads, kNumQuadsInIdxBuffer);
bsalomon@google.com47059542012-06-06 20:51:20 +0000843 target->drawIndexed(kTriangles_GrPrimitiveType,
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000844 4 * lineCnt + kVertsPerQuad*quads, // startV
845 0, // startI
846 kVertsPerQuad*n, // vCount
847 kIdxsPerQuad*n); // iCount
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000848 quads += n;
849 }
bsalomon@google.com0406b9e2013-04-02 21:00:15 +0000850 target->resetIndexSource();
bsalomon@google.com4647f902013-03-26 14:45:27 +0000851
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000852 return true;
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000853}