blob: fdb6009857ce56f66fef0cd2a32f9f6daea0cc93 [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.
504 * Coverage is min(0, 1-distance). 3rd & 4th component unused.
505 * Requires shader derivative instruction support.
506 */
507class HairQuadEdgeEffect : public GrEffect {
508public:
509
510 static GrEffectRef* Create() {
511 // we go through this so we only have one copy of each effect
512 static GrEffectRef* gHairQuadEdgeEffectRef =
513 CreateEffectRef(AutoEffectUnref(SkNEW(HairQuadEdgeEffect)));
514 static SkAutoTUnref<GrEffectRef> gUnref(gHairQuadEdgeEffectRef);
515
516 gHairQuadEdgeEffectRef->ref();
517 return gHairQuadEdgeEffectRef;
518 }
519
520 virtual ~HairQuadEdgeEffect() {}
521
522 static const char* Name() { return "HairQuadEdge"; }
523
524 virtual void getConstantColorComponents(GrColor* color,
525 uint32_t* validFlags) const SK_OVERRIDE {
526 *validFlags = 0;
527 }
528
529 virtual const GrBackendEffectFactory& getFactory() const SK_OVERRIDE {
530 return GrTBackendEffectFactory<HairQuadEdgeEffect>::getInstance();
531 }
532
533 class GLEffect : public GrGLEffect {
534 public:
535 GLEffect(const GrBackendEffectFactory& factory, const GrDrawEffect&)
536 : INHERITED (factory) {}
537
538 virtual void emitCode(GrGLShaderBuilder* builder,
539 const GrDrawEffect& drawEffect,
540 EffectKey key,
541 const char* outputColor,
542 const char* inputColor,
543 const TextureSamplerArray& samplers) SK_OVERRIDE {
544 const char *vsName, *fsName;
545 const SkString* attrName =
546 builder->getEffectAttributeName(drawEffect.getVertexAttribIndices()[0]);
547 builder->fsCodeAppendf("\t\tfloat edgeAlpha;\n");
548
549 SkAssertResult(builder->enableFeature(
550 GrGLShaderBuilder::kStandardDerivatives_GLSLFeature));
551 builder->addVarying(kVec4f_GrSLType, "HairQuadEdge", &vsName, &fsName);
552
553 builder->fsCodeAppendf("\t\tvec2 duvdx = dFdx(%s.xy);\n", fsName);
554 builder->fsCodeAppendf("\t\tvec2 duvdy = dFdy(%s.xy);\n", fsName);
555 builder->fsCodeAppendf("\t\tvec2 gF = vec2(2.0*%s.x*duvdx.x - duvdx.y,\n"
556 "\t\t 2.0*%s.x*duvdy.x - duvdy.y);\n",
557 fsName, fsName);
558 builder->fsCodeAppendf("\t\tedgeAlpha = (%s.x*%s.x - %s.y);\n", fsName, fsName,
559 fsName);
560 builder->fsCodeAppend("\t\tedgeAlpha = sqrt(edgeAlpha*edgeAlpha / dot(gF, gF));\n");
561 builder->fsCodeAppend("\t\tedgeAlpha = max(1.0 - edgeAlpha, 0.0);\n");
562
563 SkString modulate;
564 GrGLSLModulate4f(&modulate, inputColor, "edgeAlpha");
565 builder->fsCodeAppendf("\t%s = %s;\n", outputColor, modulate.c_str());
566
567 builder->vsCodeAppendf("\t%s = %s;\n", vsName, attrName->c_str());
568 }
569
570 static inline EffectKey GenKey(const GrDrawEffect& drawEffect, const GrGLCaps&) {
571 return 0x0;
572 }
573
574 virtual void setData(const GrGLUniformManager&, const GrDrawEffect&) SK_OVERRIDE {}
575
576 private:
577 typedef GrGLEffect INHERITED;
578 };
579
580private:
581 HairQuadEdgeEffect() {
582 this->addVertexAttrib(kVec4f_GrSLType);
583 }
584
585 virtual bool onIsEqual(const GrEffect& other) const SK_OVERRIDE {
586 return true;
587 }
588
589 GR_DECLARE_EFFECT_TEST;
590
591 typedef GrEffect INHERITED;
592};
593
594GR_DEFINE_EFFECT_TEST(HairQuadEdgeEffect);
595
596GrEffectRef* HairQuadEdgeEffect::TestCreate(SkMWCRandom* random,
597 GrContext*,
598 const GrDrawTargetCaps& caps,
599 GrTexture*[]) {
600 // Doesn't work without derivative instructions.
601 return caps.shaderDerivativeSupport() ? HairQuadEdgeEffect::Create() : NULL;}
602
603///////////////////////////////////////////////////////////////////////////////
604
605/**
606 * The output of this effect is a 1-pixel wide line.
607 * Input is 2D implicit device coord line eq (a*x + b*y +c = 0). 4th component unused.
608 */
609class HairLineEdgeEffect : public GrEffect {
610public:
611
612 static GrEffectRef* Create() {
613 // we go through this so we only have one copy of each effect
614 static GrEffectRef* gHairLineEdgeEffectRef =
615 CreateEffectRef(AutoEffectUnref(SkNEW(HairLineEdgeEffect)));
616 static SkAutoTUnref<GrEffectRef> gUnref(gHairLineEdgeEffectRef);
617
618 gHairLineEdgeEffectRef->ref();
619 return gHairLineEdgeEffectRef;
620 }
621
622 virtual ~HairLineEdgeEffect() {}
623
624 static const char* Name() { return "HairLineEdge"; }
625
626 virtual void getConstantColorComponents(GrColor* color,
627 uint32_t* validFlags) const SK_OVERRIDE {
628 *validFlags = 0;
629 }
630
631 virtual const GrBackendEffectFactory& getFactory() const SK_OVERRIDE {
632 return GrTBackendEffectFactory<HairLineEdgeEffect>::getInstance();
633 }
634
635 class GLEffect : public GrGLEffect {
636 public:
637 GLEffect(const GrBackendEffectFactory& factory, const GrDrawEffect&)
638 : INHERITED (factory) {}
639
640 virtual void emitCode(GrGLShaderBuilder* builder,
641 const GrDrawEffect& drawEffect,
642 EffectKey key,
643 const char* outputColor,
644 const char* inputColor,
645 const TextureSamplerArray& samplers) SK_OVERRIDE {
646 const char *vsName, *fsName;
647 const SkString* attrName =
648 builder->getEffectAttributeName(drawEffect.getVertexAttribIndices()[0]);
649 builder->fsCodeAppendf("\t\tfloat edgeAlpha;\n");
650
651 builder->addVarying(kVec4f_GrSLType, "HairLineEdge", &vsName, &fsName);
652
653 builder->fsCodeAppendf("\t\tedgeAlpha = abs(dot(vec3(%s.xy,1), %s.xyz));\n",
654 builder->fragmentPosition(), fsName);
655 builder->fsCodeAppendf("\t\tedgeAlpha = max(1.0 - edgeAlpha, 0.0);\n");
656
657 SkString modulate;
658 GrGLSLModulate4f(&modulate, inputColor, "edgeAlpha");
659 builder->fsCodeAppendf("\t%s = %s;\n", outputColor, modulate.c_str());
660
661 builder->vsCodeAppendf("\t%s = %s;\n", vsName, attrName->c_str());
662 }
663
664 static inline EffectKey GenKey(const GrDrawEffect& drawEffect, const GrGLCaps&) {
665 return 0x0;
666 }
667
668 virtual void setData(const GrGLUniformManager&, const GrDrawEffect&) SK_OVERRIDE {}
669
670 private:
671 typedef GrGLEffect INHERITED;
672 };
673
674private:
675 HairLineEdgeEffect() {
676 this->addVertexAttrib(kVec4f_GrSLType);
677 }
678
679 virtual bool onIsEqual(const GrEffect& other) const SK_OVERRIDE {
680 return true;
681 }
682
683 GR_DECLARE_EFFECT_TEST;
684
685 typedef GrEffect INHERITED;
686};
687
688GR_DEFINE_EFFECT_TEST(HairLineEdgeEffect);
689
690GrEffectRef* HairLineEdgeEffect::TestCreate(SkMWCRandom* random,
691 GrContext*,
692 const GrDrawTargetCaps& caps,
693 GrTexture*[]) {
694 return HairLineEdgeEffect::Create();
695}
696
697///////////////////////////////////////////////////////////////////////////////
698
bsalomon@google.comb3729422012-03-07 19:13:28 +0000699bool GrAAHairLinePathRenderer::createGeom(
700 const SkPath& path,
bsalomon@google.comb3729422012-03-07 19:13:28 +0000701 GrDrawTarget* target,
bsalomon@google.comb3729422012-03-07 19:13:28 +0000702 int* lineCnt,
703 int* quadCnt,
704 GrDrawTarget::AutoReleaseGeometry* arg) {
jvanverth@google.com9b855c72013-03-01 18:21:22 +0000705 GrDrawState* drawState = target->drawState();
706 int rtHeight = drawState->getRenderTarget()->height();
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000707
robertphillips@google.com7b112892012-07-31 15:18:21 +0000708 GrIRect devClipBounds;
jvanverth@google.com9b855c72013-03-01 18:21:22 +0000709 target->getClip()->getConservativeBounds(drawState->getRenderTarget(),
robertphillips@google.com7b112892012-07-31 15:18:21 +0000710 &devClipBounds);
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000711
jvanverth@google.com9b855c72013-03-01 18:21:22 +0000712 // position + edge
713 static const GrVertexAttrib kAttribs[] = {
jvanverth@google.com054ae992013-04-01 20:06:51 +0000714 {kVec2f_GrVertexAttribType, 0, kPosition_GrVertexAttribBinding},
715 {kVec4f_GrVertexAttribType, sizeof(GrPoint), kEffect_GrVertexAttribBinding}
jvanverth@google.com9b855c72013-03-01 18:21:22 +0000716 };
jvanverth@google.com9b855c72013-03-01 18:21:22 +0000717 SkMatrix viewM = drawState->getViewMatrix();
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000718
bsalomon@google.com92669012011-09-27 19:10:05 +0000719 PREALLOC_PTARRAY(128) lines;
720 PREALLOC_PTARRAY(128) quads;
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000721 IntArray qSubdivs;
bsalomon@google.com0f11e1a2012-10-08 14:48:36 +0000722 *quadCnt = generate_lines_and_quads(path, viewM, devClipBounds,
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000723 &lines, &quads, &qSubdivs);
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000724
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000725 *lineCnt = lines.count() / 2;
726 int vertCnt = kVertsPerLineSeg * *lineCnt + kVertsPerQuad * *quadCnt;
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000727
jvanverth@google.com9b855c72013-03-01 18:21:22 +0000728 target->drawState()->setVertexAttribs(kAttribs, SK_ARRAY_COUNT(kAttribs));
jvanverth@google.comb75b0a02013-02-05 20:33:30 +0000729 GrAssert(sizeof(Vertex) == target->getDrawState().getVertexSize());
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000730
jvanverth@google.comb75b0a02013-02-05 20:33:30 +0000731 if (!arg->set(target, vertCnt, 0)) {
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000732 return false;
733 }
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000734
bsalomon@google.comb3729422012-03-07 19:13:28 +0000735 Vertex* verts = reinterpret_cast<Vertex*>(arg->vertices());
736
bsalomon@google.comb9086a02012-11-01 18:02:54 +0000737 const SkMatrix* toDevice = NULL;
738 const SkMatrix* toSrc = NULL;
739 SkMatrix ivm;
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000740
741 if (viewM.hasPerspective()) {
742 if (viewM.invert(&ivm)) {
743 toDevice = &viewM;
744 toSrc = &ivm;
745 }
746 }
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000747
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000748 for (int i = 0; i < *lineCnt; ++i) {
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000749 add_line(&lines[2*i], rtHeight, toSrc, &verts);
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000750 }
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000751
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000752 int unsubdivQuadCnt = quads.count() / 3;
753 for (int i = 0; i < unsubdivQuadCnt; ++i) {
754 GrAssert(qSubdivs[i] >= 0);
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000755 add_quads(&quads[3*i], qSubdivs[i], toDevice, toSrc, &verts);
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000756 }
757
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000758 return true;
759}
760
robertphillips@google.com8a4fc402012-05-24 12:42:24 +0000761bool GrAAHairLinePathRenderer::canDrawPath(const SkPath& path,
sugoi@google.com5f74cf82012-12-17 21:16:45 +0000762 const SkStrokeRec& stroke,
robertphillips@google.com8a4fc402012-05-24 12:42:24 +0000763 const GrDrawTarget* target,
764 bool antiAlias) const {
sugoi@google.com5f74cf82012-12-17 21:16:45 +0000765 if (!stroke.isHairlineStyle() || !antiAlias) {
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000766 return false;
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000767 }
768
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000769 static const uint32_t gReqDerivMask = SkPath::kCubic_SegmentMask |
770 SkPath::kQuad_SegmentMask;
bsalomon@google.combcce8922013-03-25 15:38:39 +0000771 if (!target->caps()->shaderDerivativeSupport() &&
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000772 (gReqDerivMask & path.getSegmentMasks())) {
773 return false;
774 }
775 return true;
776}
777
778bool GrAAHairLinePathRenderer::onDrawPath(const SkPath& path,
sugoi@google.com5f74cf82012-12-17 21:16:45 +0000779 const SkStrokeRec&,
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000780 GrDrawTarget* target,
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000781 bool antiAlias) {
782
783 int lineCnt;
784 int quadCnt;
bsalomon@google.comb3729422012-03-07 19:13:28 +0000785 GrDrawTarget::AutoReleaseGeometry arg;
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000786 if (!this->createGeom(path,
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000787 target,
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000788 &lineCnt,
bsalomon@google.comb3729422012-03-07 19:13:28 +0000789 &quadCnt,
790 &arg)) {
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000791 return false;
792 }
793
bsalomon@google.com4647f902013-03-26 14:45:27 +0000794 GrDrawTarget::AutoStateRestore asr(target, GrDrawTarget::kPreserve_ASRInit);
bsalomon@google.com873ea0c2012-03-30 15:55:32 +0000795 GrDrawState* drawState = target->drawState();
bsalomon@google.com4647f902013-03-26 14:45:27 +0000796
797 GrDrawState::AutoDeviceCoordDraw adcd;
bsalomon@google.coma8347462012-10-08 18:59:39 +0000798 // createGeom transforms the geometry to device space when the matrix does not have
799 // perspective.
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000800 if (!drawState->getViewMatrix().hasPerspective()) {
bsalomon@google.coma8347462012-10-08 18:59:39 +0000801 adcd.set(drawState);
802 if (!adcd.succeeded()) {
bsalomon@google.come3d32162012-07-20 13:37:06 +0000803 return false;
bsalomon@google.comdbeeac32011-09-12 14:59:34 +0000804 }
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000805 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000806
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000807 // TODO: See whether rendering lines as degenerate quads improves perf
808 // when we have a mix
bsalomon@google.coma8347462012-10-08 18:59:39 +0000809
bsalomon@google.com4647f902013-03-26 14:45:27 +0000810 enum {
811 // the edge effects share this stage with glyph rendering
812 // (kGlyphMaskStage in GrTextContext) && SW path rendering
813 // (kPathMaskStage in GrSWMaskHelper)
814 kEdgeEffectStage = GrPaint::kTotalStages,
815 };
816 static const int kEdgeAttrIndex = 1;
bsalomon@google.coma8347462012-10-08 18:59:39 +0000817
commit-bot@chromium.org90c240a2013-04-02 17:57:21 +0000818 GrEffectRef* hairLineEffect = HairLineEdgeEffect::Create();
819 GrEffectRef* hairQuadEffect = HairQuadEdgeEffect::Create();
skia.committer@gmail.com37cbc7f2013-03-27 07:01:04 +0000820
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000821 target->setIndexSourceToBuffer(fLinesIndexBuffer);
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000822 int lines = 0;
823 int nBufLines = fLinesIndexBuffer->maxQuads();
bsalomon@google.com4647f902013-03-26 14:45:27 +0000824 drawState->setEffect(kEdgeEffectStage, hairLineEffect, kEdgeAttrIndex)->unref();
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000825 while (lines < lineCnt) {
826 int n = GrMin(lineCnt - lines, nBufLines);
bsalomon@google.com47059542012-06-06 20:51:20 +0000827 target->drawIndexed(kTriangles_GrPrimitiveType,
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000828 kVertsPerLineSeg*lines, // startV
829 0, // startI
830 kVertsPerLineSeg*n, // vCount
831 kIdxsPerLineSeg*n); // iCount
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000832 lines += n;
833 }
834
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000835 target->setIndexSourceToBuffer(fQuadsIndexBuffer);
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000836 int quads = 0;
bsalomon@google.com4647f902013-03-26 14:45:27 +0000837 drawState->setEffect(kEdgeEffectStage, hairQuadEffect, kEdgeAttrIndex)->unref();
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000838 while (quads < quadCnt) {
839 int n = GrMin(quadCnt - quads, kNumQuadsInIdxBuffer);
bsalomon@google.com47059542012-06-06 20:51:20 +0000840 target->drawIndexed(kTriangles_GrPrimitiveType,
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000841 4 * lineCnt + kVertsPerQuad*quads, // startV
842 0, // startI
843 kVertsPerQuad*n, // vCount
844 kIdxsPerQuad*n); // iCount
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000845 quads += n;
846 }
bsalomon@google.com4647f902013-03-26 14:45:27 +0000847
bsalomon@google.comc2099d22012-03-02 21:26:50 +0000848 return true;
bsalomon@google.comaeb21602011-08-30 18:13:44 +0000849}