blob: 8e3ec5b02e9e433b966f4fc00dc10b8112f244c6 [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.com94b284d2013-05-10 17:14:06 +0000222 SkPath::Verb verb = iter.next(pts);
223 switch (verb) {
224 case SkPath::kMove_Verb:
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000225 break;
bsalomon@google.com94b284d2013-05-10 17:14:06 +0000226 case SkPath::kLine_Verb:
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.com94b284d2013-05-10 17:14:06 +0000237 case SkPath::kQuad_Verb:
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.com94b284d2013-05-10 17:14:06 +0000263 case SkPath::kCubic_Verb:
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.com94b284d2013-05-10 17:14:06 +0000320 case SkPath::kClose_Verb:
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000321 break;
bsalomon@google.com94b284d2013-05-10 17:14:06 +0000322 case SkPath::kDone_Verb:
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000323 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,
bsalomon@google.com1dd9baa2013-05-20 16:49:06 +0000363 const SkMatrix* toSrc, Vertex verts[kVertsPerQuad],
364 SkRect* devBounds) {
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000365 GrAssert(!toDevice == !toSrc);
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000366 // original quad is specified by tri a,b,c
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000367 SkPoint a = qpts[0];
368 SkPoint b = qpts[1];
369 SkPoint c = qpts[2];
370
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000371 // this should be in the src space, not dev coords, when we have perspective
bsalomon@google.com19713172012-03-15 13:51:08 +0000372 GrPathUtils::QuadUVMatrix DevToUV(qpts);
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000373
374 if (toDevice) {
375 toDevice->mapPoints(&a, 1);
376 toDevice->mapPoints(&b, 1);
377 toDevice->mapPoints(&c, 1);
378 }
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000379 // make a new poly where we replace a and c by a 1-pixel wide edges orthog
380 // to edges ab and bc:
381 //
382 // before | after
383 // | b0
384 // b |
385 // |
386 // | a0 c0
387 // a c | a1 c1
388 //
389 // edges a0->b0 and b0->c0 are parallel to original edges a->b and b->c,
390 // respectively.
391 Vertex& a0 = verts[0];
392 Vertex& a1 = verts[1];
393 Vertex& b0 = verts[2];
394 Vertex& c0 = verts[3];
395 Vertex& c1 = verts[4];
396
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000397 SkVector ab = b;
398 ab -= a;
399 SkVector ac = c;
400 ac -= a;
401 SkVector cb = b;
402 cb -= c;
403
404 // We should have already handled degenerates
405 GrAssert(ab.length() > 0 && cb.length() > 0);
406
407 ab.normalize();
408 SkVector abN;
409 abN.setOrthog(ab, SkVector::kLeft_Side);
410 if (abN.dot(ac) > 0) {
411 abN.negate();
412 }
413
414 cb.normalize();
415 SkVector cbN;
416 cbN.setOrthog(cb, SkVector::kLeft_Side);
417 if (cbN.dot(ac) < 0) {
418 cbN.negate();
419 }
420
421 a0.fPos = a;
422 a0.fPos += abN;
423 a1.fPos = a;
424 a1.fPos -= abN;
425
426 c0.fPos = c;
427 c0.fPos += cbN;
428 c1.fPos = c;
429 c1.fPos -= cbN;
430
bsalomon@google.com1dd9baa2013-05-20 16:49:06 +0000431 // This point may not be within 1 pixel of a control point. We update the bounding box to
432 // include it.
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000433 intersect_lines(a0.fPos, abN, c0.fPos, cbN, &b0.fPos);
bsalomon@google.com1dd9baa2013-05-20 16:49:06 +0000434 devBounds->growToInclude(b0.fPos.fX, b0.fPos.fY);
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000435
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000436 if (toSrc) {
437 toSrc->mapPointsWithStride(&verts[0].fPos, sizeof(Vertex), kVertsPerQuad);
438 }
bsalomon@google.com19713172012-03-15 13:51:08 +0000439 DevToUV.apply<kVertsPerQuad, sizeof(Vertex), sizeof(GrPoint)>(verts);
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000440}
441
442void add_quads(const SkPoint p[3],
443 int subdiv,
bsalomon@google.comb9086a02012-11-01 18:02:54 +0000444 const SkMatrix* toDevice,
445 const SkMatrix* toSrc,
bsalomon@google.com1dd9baa2013-05-20 16:49:06 +0000446 Vertex** vert,
447 SkRect* devBounds) {
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000448 GrAssert(subdiv >= 0);
449 if (subdiv) {
450 SkPoint newP[5];
451 SkChopQuadAtHalf(p, newP);
bsalomon@google.com1dd9baa2013-05-20 16:49:06 +0000452 add_quads(newP + 0, subdiv-1, toDevice, toSrc, vert, devBounds);
453 add_quads(newP + 2, subdiv-1, toDevice, toSrc, vert, devBounds);
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000454 } else {
bsalomon@google.com1dd9baa2013-05-20 16:49:06 +0000455 bloat_quad(p, toDevice, toSrc, *vert, devBounds);
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000456 *vert += kVertsPerQuad;
457 }
458}
459
460void add_line(const SkPoint p[2],
461 int rtHeight,
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000462 const SkMatrix* toSrc,
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000463 Vertex** vert) {
464 const SkPoint& a = p[0];
465 const SkPoint& b = p[1];
466
467 SkVector orthVec = b;
468 orthVec -= a;
469
470 if (orthVec.setLength(SK_Scalar1)) {
471 orthVec.setOrthog(orthVec);
472
bsalomon@google.com706f6682012-10-23 14:53:55 +0000473 SkScalar lineC = -(a.dot(orthVec));
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000474 for (int i = 0; i < kVertsPerLineSeg; ++i) {
475 (*vert)[i].fPos = (i < 2) ? a : b;
476 if (0 == i || 3 == i) {
477 (*vert)[i].fPos -= orthVec;
478 } else {
479 (*vert)[i].fPos += orthVec;
480 }
bsalomon@google.com706f6682012-10-23 14:53:55 +0000481 (*vert)[i].fLine.fA = orthVec.fX;
482 (*vert)[i].fLine.fB = orthVec.fY;
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000483 (*vert)[i].fLine.fC = lineC;
484 }
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000485 if (NULL != toSrc) {
486 toSrc->mapPointsWithStride(&(*vert)->fPos,
487 sizeof(Vertex),
488 kVertsPerLineSeg);
489 }
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000490 } else {
491 // just make it degenerate and likely offscreen
492 (*vert)[0].fPos.set(SK_ScalarMax, SK_ScalarMax);
493 (*vert)[1].fPos.set(SK_ScalarMax, SK_ScalarMax);
494 (*vert)[2].fPos.set(SK_ScalarMax, SK_ScalarMax);
495 (*vert)[3].fPos.set(SK_ScalarMax, SK_ScalarMax);
496 }
497
498 *vert += kVertsPerLineSeg;
499}
500
501}
502
commit-bot@chromium.org90c240a2013-04-02 17:57:21 +0000503///////////////////////////////////////////////////////////////////////////////
504
505/**
506 * The output of this effect is a hairline edge for quadratics.
507 * Quadratic specified by 0=u^2-v canonical coords. u and v are the first
508 * two components of the vertex attribute. Uses unsigned distance.
skia.committer@gmail.com041e2db2013-04-03 07:01:14 +0000509 * Coverage is min(0, 1-distance). 3rd & 4th component unused.
510 * Requires shader derivative instruction support.
commit-bot@chromium.org90c240a2013-04-02 17:57:21 +0000511 */
512class HairQuadEdgeEffect : public GrEffect {
513public:
514
515 static GrEffectRef* Create() {
bsalomon@google.comd42aca32013-04-23 15:37:27 +0000516 GR_CREATE_STATIC_EFFECT(gHairQuadEdgeEffect, HairQuadEdgeEffect, ());
517 gHairQuadEdgeEffect->ref();
518 return gHairQuadEdgeEffect;
commit-bot@chromium.org90c240a2013-04-02 17:57:21 +0000519 }
520
521 virtual ~HairQuadEdgeEffect() {}
522
523 static const char* Name() { return "HairQuadEdge"; }
524
skia.committer@gmail.com041e2db2013-04-03 07:01:14 +0000525 virtual void getConstantColorComponents(GrColor* color,
commit-bot@chromium.org90c240a2013-04-02 17:57:21 +0000526 uint32_t* validFlags) const SK_OVERRIDE {
527 *validFlags = 0;
528 }
529
530 virtual const GrBackendEffectFactory& getFactory() const SK_OVERRIDE {
531 return GrTBackendEffectFactory<HairQuadEdgeEffect>::getInstance();
532 }
533
534 class GLEffect : public GrGLEffect {
535 public:
536 GLEffect(const GrBackendEffectFactory& factory, const GrDrawEffect&)
537 : INHERITED (factory) {}
538
539 virtual void emitCode(GrGLShaderBuilder* builder,
540 const GrDrawEffect& drawEffect,
541 EffectKey key,
542 const char* outputColor,
543 const char* inputColor,
544 const TextureSamplerArray& samplers) SK_OVERRIDE {
545 const char *vsName, *fsName;
546 const SkString* attrName =
547 builder->getEffectAttributeName(drawEffect.getVertexAttribIndices()[0]);
548 builder->fsCodeAppendf("\t\tfloat edgeAlpha;\n");
549
550 SkAssertResult(builder->enableFeature(
551 GrGLShaderBuilder::kStandardDerivatives_GLSLFeature));
552 builder->addVarying(kVec4f_GrSLType, "HairQuadEdge", &vsName, &fsName);
553
554 builder->fsCodeAppendf("\t\tvec2 duvdx = dFdx(%s.xy);\n", fsName);
555 builder->fsCodeAppendf("\t\tvec2 duvdy = dFdy(%s.xy);\n", fsName);
556 builder->fsCodeAppendf("\t\tvec2 gF = vec2(2.0*%s.x*duvdx.x - duvdx.y,\n"
557 "\t\t 2.0*%s.x*duvdy.x - duvdy.y);\n",
558 fsName, fsName);
559 builder->fsCodeAppendf("\t\tedgeAlpha = (%s.x*%s.x - %s.y);\n", fsName, fsName,
560 fsName);
561 builder->fsCodeAppend("\t\tedgeAlpha = sqrt(edgeAlpha*edgeAlpha / dot(gF, gF));\n");
562 builder->fsCodeAppend("\t\tedgeAlpha = max(1.0 - edgeAlpha, 0.0);\n");
563
564 SkString modulate;
bsalomon@google.com018f1792013-04-18 19:36:09 +0000565 GrGLSLModulatef<4>(&modulate, inputColor, "edgeAlpha");
commit-bot@chromium.org90c240a2013-04-02 17:57:21 +0000566 builder->fsCodeAppendf("\t%s = %s;\n", outputColor, modulate.c_str());
567
568 builder->vsCodeAppendf("\t%s = %s;\n", vsName, attrName->c_str());
569 }
570
571 static inline EffectKey GenKey(const GrDrawEffect& drawEffect, const GrGLCaps&) {
572 return 0x0;
573 }
574
575 virtual void setData(const GrGLUniformManager&, const GrDrawEffect&) SK_OVERRIDE {}
576
577 private:
578 typedef GrGLEffect INHERITED;
579 };
580
581private:
skia.committer@gmail.com041e2db2013-04-03 07:01:14 +0000582 HairQuadEdgeEffect() {
583 this->addVertexAttrib(kVec4f_GrSLType);
commit-bot@chromium.org90c240a2013-04-02 17:57:21 +0000584 }
585
586 virtual bool onIsEqual(const GrEffect& other) const SK_OVERRIDE {
587 return true;
588 }
589
590 GR_DECLARE_EFFECT_TEST;
591
592 typedef GrEffect INHERITED;
593};
594
595GR_DEFINE_EFFECT_TEST(HairQuadEdgeEffect);
596
597GrEffectRef* HairQuadEdgeEffect::TestCreate(SkMWCRandom* random,
598 GrContext*,
599 const GrDrawTargetCaps& caps,
600 GrTexture*[]) {
601 // Doesn't work without derivative instructions.
602 return caps.shaderDerivativeSupport() ? HairQuadEdgeEffect::Create() : NULL;}
603
604///////////////////////////////////////////////////////////////////////////////
605
606/**
skia.committer@gmail.com041e2db2013-04-03 07:01:14 +0000607 * The output of this effect is a 1-pixel wide line.
608 * 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 +0000609 */
610class HairLineEdgeEffect : public GrEffect {
611public:
612
613 static GrEffectRef* Create() {
bsalomon@google.comd42aca32013-04-23 15:37:27 +0000614 GR_CREATE_STATIC_EFFECT(gHairLineEdge, HairLineEdgeEffect, ());
615 gHairLineEdge->ref();
616 return gHairLineEdge;
commit-bot@chromium.org90c240a2013-04-02 17:57:21 +0000617 }
618
619 virtual ~HairLineEdgeEffect() {}
620
621 static const char* Name() { return "HairLineEdge"; }
622
skia.committer@gmail.com041e2db2013-04-03 07:01:14 +0000623 virtual void getConstantColorComponents(GrColor* color,
commit-bot@chromium.org90c240a2013-04-02 17:57:21 +0000624 uint32_t* validFlags) const SK_OVERRIDE {
625 *validFlags = 0;
626 }
627
628 virtual const GrBackendEffectFactory& getFactory() const SK_OVERRIDE {
629 return GrTBackendEffectFactory<HairLineEdgeEffect>::getInstance();
630 }
631
632 class GLEffect : public GrGLEffect {
633 public:
634 GLEffect(const GrBackendEffectFactory& factory, const GrDrawEffect&)
635 : INHERITED (factory) {}
636
637 virtual void emitCode(GrGLShaderBuilder* builder,
638 const GrDrawEffect& drawEffect,
639 EffectKey key,
640 const char* outputColor,
641 const char* inputColor,
642 const TextureSamplerArray& samplers) SK_OVERRIDE {
643 const char *vsName, *fsName;
644 const SkString* attrName =
645 builder->getEffectAttributeName(drawEffect.getVertexAttribIndices()[0]);
646 builder->fsCodeAppendf("\t\tfloat edgeAlpha;\n");
647
648 builder->addVarying(kVec4f_GrSLType, "HairLineEdge", &vsName, &fsName);
649
650 builder->fsCodeAppendf("\t\tedgeAlpha = abs(dot(vec3(%s.xy,1), %s.xyz));\n",
651 builder->fragmentPosition(), fsName);
652 builder->fsCodeAppendf("\t\tedgeAlpha = max(1.0 - edgeAlpha, 0.0);\n");
653
654 SkString modulate;
bsalomon@google.com018f1792013-04-18 19:36:09 +0000655 GrGLSLModulatef<4>(&modulate, inputColor, "edgeAlpha");
commit-bot@chromium.org90c240a2013-04-02 17:57:21 +0000656 builder->fsCodeAppendf("\t%s = %s;\n", outputColor, modulate.c_str());
657
658 builder->vsCodeAppendf("\t%s = %s;\n", vsName, attrName->c_str());
659 }
660
661 static inline EffectKey GenKey(const GrDrawEffect& drawEffect, const GrGLCaps&) {
662 return 0x0;
663 }
664
665 virtual void setData(const GrGLUniformManager&, const GrDrawEffect&) SK_OVERRIDE {}
666
667 private:
668 typedef GrGLEffect INHERITED;
669 };
670
671private:
skia.committer@gmail.com041e2db2013-04-03 07:01:14 +0000672 HairLineEdgeEffect() {
673 this->addVertexAttrib(kVec4f_GrSLType);
commit-bot@chromium.org8d47ddc2013-05-09 14:55:46 +0000674 this->setWillReadFragmentPosition();
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,
bsalomon@google.com1dd9baa2013-05-20 16:49:06 +0000712 GrDrawTarget::AutoReleaseGeometry* arg,
713 SkRect* devBounds) {
jvanverth@google.com9b855c72013-03-01 18:21:22 +0000714 GrDrawState* drawState = target->drawState();
715 int rtHeight = drawState->getRenderTarget()->height();
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000716
robertphillips@google.com7b112892012-07-31 15:18:21 +0000717 GrIRect devClipBounds;
jvanverth@google.com9b855c72013-03-01 18:21:22 +0000718 target->getClip()->getConservativeBounds(drawState->getRenderTarget(),
robertphillips@google.com7b112892012-07-31 15:18:21 +0000719 &devClipBounds);
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000720
jvanverth@google.com9b855c72013-03-01 18:21:22 +0000721 SkMatrix viewM = drawState->getViewMatrix();
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000722
bsalomon@google.com1dd9baa2013-05-20 16:49:06 +0000723 // All the vertices that we compute are within 1 of path control points with the exception of
724 // one of the bounding vertices for each quad. The add_quads() function will update the bounds
725 // for each quad added.
726 *devBounds = path.getBounds();
727 viewM.mapRect(devBounds);
728 devBounds->outset(SK_Scalar1, SK_Scalar1);
729
bsalomon@google.com92669012011-09-27 19:10:05 +0000730 PREALLOC_PTARRAY(128) lines;
731 PREALLOC_PTARRAY(128) quads;
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000732 IntArray qSubdivs;
bsalomon@google.com0f11e1a2012-10-08 14:48:36 +0000733 *quadCnt = generate_lines_and_quads(path, viewM, devClipBounds,
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000734 &lines, &quads, &qSubdivs);
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000735
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000736 *lineCnt = lines.count() / 2;
737 int vertCnt = kVertsPerLineSeg * *lineCnt + kVertsPerQuad * *quadCnt;
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000738
robertphillips@google.com42903302013-04-20 12:26:07 +0000739 target->drawState()->setVertexAttribs<gHairlineAttribs>(SK_ARRAY_COUNT(gHairlineAttribs));
jvanverth@google.comb75b0a02013-02-05 20:33:30 +0000740 GrAssert(sizeof(Vertex) == target->getDrawState().getVertexSize());
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000741
jvanverth@google.comb75b0a02013-02-05 20:33:30 +0000742 if (!arg->set(target, vertCnt, 0)) {
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000743 return false;
744 }
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000745
bsalomon@google.comb3729422012-03-07 19:13:28 +0000746 Vertex* verts = reinterpret_cast<Vertex*>(arg->vertices());
747
bsalomon@google.comb9086a02012-11-01 18:02:54 +0000748 const SkMatrix* toDevice = NULL;
749 const SkMatrix* toSrc = NULL;
750 SkMatrix ivm;
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000751
752 if (viewM.hasPerspective()) {
753 if (viewM.invert(&ivm)) {
754 toDevice = &viewM;
755 toSrc = &ivm;
756 }
757 }
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000758
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000759 for (int i = 0; i < *lineCnt; ++i) {
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000760 add_line(&lines[2*i], rtHeight, toSrc, &verts);
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000761 }
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000762
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000763 int unsubdivQuadCnt = quads.count() / 3;
764 for (int i = 0; i < unsubdivQuadCnt; ++i) {
765 GrAssert(qSubdivs[i] >= 0);
bsalomon@google.com1dd9baa2013-05-20 16:49:06 +0000766 add_quads(&quads[3*i], qSubdivs[i], toDevice, toSrc, &verts, devBounds);
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000767 }
768
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000769 return true;
770}
771
robertphillips@google.com8a4fc402012-05-24 12:42:24 +0000772bool GrAAHairLinePathRenderer::canDrawPath(const SkPath& path,
sugoi@google.com5f74cf82012-12-17 21:16:45 +0000773 const SkStrokeRec& stroke,
robertphillips@google.com8a4fc402012-05-24 12:42:24 +0000774 const GrDrawTarget* target,
775 bool antiAlias) const {
sugoi@google.com5f74cf82012-12-17 21:16:45 +0000776 if (!stroke.isHairlineStyle() || !antiAlias) {
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000777 return false;
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000778 }
779
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000780 static const uint32_t gReqDerivMask = SkPath::kCubic_SegmentMask |
781 SkPath::kQuad_SegmentMask;
bsalomon@google.combcce8922013-03-25 15:38:39 +0000782 if (!target->caps()->shaderDerivativeSupport() &&
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000783 (gReqDerivMask & path.getSegmentMasks())) {
784 return false;
785 }
786 return true;
787}
788
789bool GrAAHairLinePathRenderer::onDrawPath(const SkPath& path,
sugoi@google.com5f74cf82012-12-17 21:16:45 +0000790 const SkStrokeRec&,
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000791 GrDrawTarget* target,
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000792 bool antiAlias) {
793
794 int lineCnt;
795 int quadCnt;
bsalomon@google.comb3729422012-03-07 19:13:28 +0000796 GrDrawTarget::AutoReleaseGeometry arg;
bsalomon@google.com1dd9baa2013-05-20 16:49:06 +0000797 SkRect devBounds;
798
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000799 if (!this->createGeom(path,
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000800 target,
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000801 &lineCnt,
bsalomon@google.comb3729422012-03-07 19:13:28 +0000802 &quadCnt,
bsalomon@google.com1dd9baa2013-05-20 16:49:06 +0000803 &arg,
804 &devBounds)) {
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000805 return false;
806 }
807
bsalomon@google.com4647f902013-03-26 14:45:27 +0000808 GrDrawTarget::AutoStateRestore asr(target, GrDrawTarget::kPreserve_ASRInit);
bsalomon@google.com873ea0c2012-03-30 15:55:32 +0000809 GrDrawState* drawState = target->drawState();
bsalomon@google.com4647f902013-03-26 14:45:27 +0000810
811 GrDrawState::AutoDeviceCoordDraw adcd;
bsalomon@google.coma8347462012-10-08 18:59:39 +0000812 // createGeom transforms the geometry to device space when the matrix does not have
813 // perspective.
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000814 if (!drawState->getViewMatrix().hasPerspective()) {
bsalomon@google.coma8347462012-10-08 18:59:39 +0000815 adcd.set(drawState);
816 if (!adcd.succeeded()) {
bsalomon@google.come3d32162012-07-20 13:37:06 +0000817 return false;
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000818 }
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000819 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000820
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000821 // TODO: See whether rendering lines as degenerate quads improves perf
822 // when we have a mix
bsalomon@google.coma8347462012-10-08 18:59:39 +0000823
bsalomon@google.com4647f902013-03-26 14:45:27 +0000824 enum {
825 // the edge effects share this stage with glyph rendering
826 // (kGlyphMaskStage in GrTextContext) && SW path rendering
827 // (kPathMaskStage in GrSWMaskHelper)
828 kEdgeEffectStage = GrPaint::kTotalStages,
829 };
830 static const int kEdgeAttrIndex = 1;
bsalomon@google.coma8347462012-10-08 18:59:39 +0000831
commit-bot@chromium.org90c240a2013-04-02 17:57:21 +0000832 GrEffectRef* hairLineEffect = HairLineEdgeEffect::Create();
833 GrEffectRef* hairQuadEffect = HairQuadEdgeEffect::Create();
skia.committer@gmail.com37cbc7f2013-03-27 07:01:04 +0000834
bsalomon@google.com1dd9baa2013-05-20 16:49:06 +0000835 // Check devBounds
836#if GR_DEBUG
837 SkRect tolDevBounds = devBounds;
838 tolDevBounds.outset(SK_Scalar1 / 10000, SK_Scalar1 / 10000);
839 SkRect actualBounds;
840 Vertex* verts = reinterpret_cast<Vertex*>(arg.vertices());
841 int vCount = kVertsPerLineSeg * lineCnt + kVertsPerQuad * quadCnt;
842 bool first = true;
843 for (int i = 0; i < vCount; ++i) {
844 SkPoint pos = verts[i].fPos;
845 // This is a hack to workaround the fact that we move some degenerate segments offscreen.
846 if (SK_ScalarMax == pos.fX) {
847 continue;
848 }
849 drawState->getViewMatrix().mapPoints(&pos, 1);
850 if (first) {
851 actualBounds.set(pos.fX, pos.fY, pos.fX, pos.fY);
852 first = false;
853 } else {
854 actualBounds.growToInclude(pos.fX, pos.fY);
855 }
856 }
857 if (!first) {
858 GrAssert(tolDevBounds.contains(actualBounds));
859 }
860#endif
861
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000862 target->setIndexSourceToBuffer(fLinesIndexBuffer);
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000863 int lines = 0;
864 int nBufLines = fLinesIndexBuffer->maxQuads();
bsalomon@google.com4647f902013-03-26 14:45:27 +0000865 drawState->setEffect(kEdgeEffectStage, hairLineEffect, kEdgeAttrIndex)->unref();
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000866 while (lines < lineCnt) {
867 int n = GrMin(lineCnt - lines, nBufLines);
bsalomon@google.com47059542012-06-06 20:51:20 +0000868 target->drawIndexed(kTriangles_GrPrimitiveType,
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000869 kVertsPerLineSeg*lines, // startV
870 0, // startI
871 kVertsPerLineSeg*n, // vCount
bsalomon@google.com1dd9baa2013-05-20 16:49:06 +0000872 kIdxsPerLineSeg*n,
873 &devBounds); // iCount
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000874 lines += n;
875 }
876
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000877 target->setIndexSourceToBuffer(fQuadsIndexBuffer);
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000878 int quads = 0;
bsalomon@google.com4647f902013-03-26 14:45:27 +0000879 drawState->setEffect(kEdgeEffectStage, hairQuadEffect, kEdgeAttrIndex)->unref();
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000880 while (quads < quadCnt) {
881 int n = GrMin(quadCnt - quads, kNumQuadsInIdxBuffer);
bsalomon@google.com47059542012-06-06 20:51:20 +0000882 target->drawIndexed(kTriangles_GrPrimitiveType,
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000883 4 * lineCnt + kVertsPerQuad*quads, // startV
884 0, // startI
885 kVertsPerQuad*n, // vCount
bsalomon@google.com1dd9baa2013-05-20 16:49:06 +0000886 kIdxsPerQuad*n, // iCount
887 &devBounds);
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000888 quads += n;
889 }
bsalomon@google.com0406b9e2013-04-02 21:00:15 +0000890 target->resetIndexSource();
bsalomon@google.com4647f902013-03-26 14:45:27 +0000891
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000892 return true;
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000893}