blob: e15ffbed7c6b30c994233614b280ccff216ffe38 [file] [log] [blame]
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +00001/*
2 * Copyright 2014 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#include "GrDashingEffect.h"
9
egdaniele61c4112014-06-12 10:24:21 -070010#include "../GrAARectRenderer.h"
11
joshualittb0a8a372014-09-23 09:50:21 -070012#include "GrGeometryProcessor.h"
joshualitt47bb3822014-10-07 16:43:25 -070013#include "gl/builders/GrGLProgramBuilder.h"
joshualittb0a8a372014-09-23 09:50:21 -070014#include "gl/GrGLProcessor.h"
joshualitt249af152014-09-15 11:41:13 -070015#include "gl/GrGLGeometryProcessor.h"
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +000016#include "gl/GrGLSL.h"
17#include "GrContext.h"
18#include "GrCoordTransform.h"
egdaniele61c4112014-06-12 10:24:21 -070019#include "GrDrawTarget.h"
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +000020#include "GrDrawTargetCaps.h"
joshualittb0a8a372014-09-23 09:50:21 -070021#include "GrProcessor.h"
egdaniele61c4112014-06-12 10:24:21 -070022#include "GrGpu.h"
23#include "GrStrokeInfo.h"
joshualittb0a8a372014-09-23 09:50:21 -070024#include "GrTBackendProcessorFactory.h"
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +000025#include "SkGr.h"
26
27///////////////////////////////////////////////////////////////////////////////
28
egdaniele61c4112014-06-12 10:24:21 -070029// Returns whether or not the gpu can fast path the dash line effect.
30static bool can_fast_path_dash(const SkPoint pts[2], const GrStrokeInfo& strokeInfo,
31 const GrDrawTarget& target, const SkMatrix& viewMatrix) {
32 if (target.getDrawState().getRenderTarget()->isMultisampled()) {
33 return false;
34 }
35
36 // Pts must be either horizontal or vertical in src space
37 if (pts[0].fX != pts[1].fX && pts[0].fY != pts[1].fY) {
38 return false;
39 }
40
41 // May be able to relax this to include skew. As of now cannot do perspective
42 // because of the non uniform scaling of bloating a rect
43 if (!viewMatrix.preservesRightAngles()) {
44 return false;
45 }
46
47 if (!strokeInfo.isDashed() || 2 != strokeInfo.dashCount()) {
48 return false;
49 }
50
51 const SkPathEffect::DashInfo& info = strokeInfo.getDashInfo();
52 if (0 == info.fIntervals[0] && 0 == info.fIntervals[1]) {
53 return false;
54 }
55
56 SkPaint::Cap cap = strokeInfo.getStrokeRec().getCap();
57 // Current we do don't handle Round or Square cap dashes
egdanielf767e792014-07-02 06:21:32 -070058 if (SkPaint::kRound_Cap == cap && info.fIntervals[0] != 0.f) {
egdaniele61c4112014-06-12 10:24:21 -070059 return false;
60 }
61
62 return true;
63}
64
65namespace {
66
67struct DashLineVertex {
68 SkPoint fPos;
69 SkPoint fDashPos;
70};
71
joshualitt249af152014-09-15 11:41:13 -070072extern const GrVertexAttrib gDashLineNoAAVertexAttribs[] = {
73 { kVec2f_GrVertexAttribType, 0, kPosition_GrVertexAttribBinding }
74};
75
egdaniele61c4112014-06-12 10:24:21 -070076extern const GrVertexAttrib gDashLineVertexAttribs[] = {
77 { kVec2f_GrVertexAttribType, 0, kPosition_GrVertexAttribBinding },
joshualittb0a8a372014-09-23 09:50:21 -070078 { kVec2f_GrVertexAttribType, sizeof(SkPoint), kGeometryProcessor_GrVertexAttribBinding },
egdaniele61c4112014-06-12 10:24:21 -070079};
80
81};
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +000082static void calc_dash_scaling(SkScalar* parallelScale, SkScalar* perpScale,
83 const SkMatrix& viewMatrix, const SkPoint pts[2]) {
84 SkVector vecSrc = pts[1] - pts[0];
85 SkScalar magSrc = vecSrc.length();
86 SkScalar invSrc = magSrc ? SkScalarInvert(magSrc) : 0;
87 vecSrc.scale(invSrc);
88
89 SkVector vecSrcPerp;
90 vecSrc.rotateCW(&vecSrcPerp);
91 viewMatrix.mapVectors(&vecSrc, 1);
92 viewMatrix.mapVectors(&vecSrcPerp, 1);
93
94 // parallelScale tells how much to scale along the line parallel to the dash line
95 // perpScale tells how much to scale in the direction perpendicular to the dash line
96 *parallelScale = vecSrc.length();
97 *perpScale = vecSrcPerp.length();
98}
99
100// calculates the rotation needed to aligned pts to the x axis with pts[0] < pts[1]
101// Stores the rotation matrix in rotMatrix, and the mapped points in ptsRot
102static void align_to_x_axis(const SkPoint pts[2], SkMatrix* rotMatrix, SkPoint ptsRot[2] = NULL) {
103 SkVector vec = pts[1] - pts[0];
104 SkScalar mag = vec.length();
105 SkScalar inv = mag ? SkScalarInvert(mag) : 0;
106
107 vec.scale(inv);
108 rotMatrix->setSinCos(-vec.fY, vec.fX, pts[0].fX, pts[0].fY);
109 if (ptsRot) {
110 rotMatrix->mapPoints(ptsRot, pts, 2);
111 // correction for numerical issues if map doesn't make ptsRot exactly horizontal
112 ptsRot[1].fY = pts[0].fY;
113 }
114}
115
116// Assumes phase < sum of all intervals
117static SkScalar calc_start_adjustment(const SkPathEffect::DashInfo& info) {
118 SkASSERT(info.fPhase < info.fIntervals[0] + info.fIntervals[1]);
119 if (info.fPhase >= info.fIntervals[0] && info.fPhase != 0) {
120 SkScalar srcIntervalLen = info.fIntervals[0] + info.fIntervals[1];
121 return srcIntervalLen - info.fPhase;
122 }
123 return 0;
124}
125
egdaniele61c4112014-06-12 10:24:21 -0700126static SkScalar calc_end_adjustment(const SkPathEffect::DashInfo& info, const SkPoint pts[2],
127 SkScalar phase, SkScalar* endingInt) {
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000128 if (pts[1].fX <= pts[0].fX) {
129 return 0;
130 }
131 SkScalar srcIntervalLen = info.fIntervals[0] + info.fIntervals[1];
132 SkScalar totalLen = pts[1].fX - pts[0].fX;
133 SkScalar temp = SkScalarDiv(totalLen, srcIntervalLen);
134 SkScalar numFullIntervals = SkScalarFloorToScalar(temp);
egdaniele61c4112014-06-12 10:24:21 -0700135 *endingInt = totalLen - numFullIntervals * srcIntervalLen + phase;
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000136 temp = SkScalarDiv(*endingInt, srcIntervalLen);
137 *endingInt = *endingInt - SkScalarFloorToScalar(temp) * srcIntervalLen;
138 if (0 == *endingInt) {
139 *endingInt = srcIntervalLen;
140 }
141 if (*endingInt > info.fIntervals[0]) {
142 if (0 == info.fIntervals[0]) {
commit-bot@chromium.orgad883402014-05-19 14:43:45 +0000143 *endingInt -= 0.01f; // make sure we capture the last zero size pnt (used if has caps)
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000144 }
145 return *endingInt - info.fIntervals[0];
146 }
147 return 0;
148}
149
egdaniele61c4112014-06-12 10:24:21 -0700150static void setup_dashed_rect(const SkRect& rect, DashLineVertex* verts, int idx, const SkMatrix& matrix,
151 SkScalar offset, SkScalar bloat, SkScalar len, SkScalar stroke) {
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000152
egdaniele61c4112014-06-12 10:24:21 -0700153 SkScalar startDashX = offset - bloat;
154 SkScalar endDashX = offset + len + bloat;
155 SkScalar startDashY = -stroke - bloat;
156 SkScalar endDashY = stroke + bloat;
157 verts[idx].fDashPos = SkPoint::Make(startDashX , startDashY);
158 verts[idx + 1].fDashPos = SkPoint::Make(startDashX, endDashY);
159 verts[idx + 2].fDashPos = SkPoint::Make(endDashX, endDashY);
160 verts[idx + 3].fDashPos = SkPoint::Make(endDashX, startDashY);
161
162 verts[idx].fPos = SkPoint::Make(rect.fLeft, rect.fTop);
163 verts[idx + 1].fPos = SkPoint::Make(rect.fLeft, rect.fBottom);
164 verts[idx + 2].fPos = SkPoint::Make(rect.fRight, rect.fBottom);
165 verts[idx + 3].fPos = SkPoint::Make(rect.fRight, rect.fTop);
166
167 matrix.mapPointsWithStride(&verts[idx].fPos, sizeof(DashLineVertex), 4);
168}
169
170
171bool GrDashingEffect::DrawDashLine(const SkPoint pts[2], const GrPaint& paint,
172 const GrStrokeInfo& strokeInfo, GrGpu* gpu,
173 GrDrawTarget* target, const SkMatrix& vm) {
174
175 if (!can_fast_path_dash(pts, strokeInfo, *target, vm)) {
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000176 return false;
177 }
178
egdaniele61c4112014-06-12 10:24:21 -0700179 const SkPathEffect::DashInfo& info = strokeInfo.getDashInfo();
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000180
egdaniele61c4112014-06-12 10:24:21 -0700181 SkPaint::Cap cap = strokeInfo.getStrokeRec().getCap();
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000182
egdaniele61c4112014-06-12 10:24:21 -0700183 SkScalar srcStrokeWidth = strokeInfo.getStrokeRec().getWidth();
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000184
185 // the phase should be normalized to be [0, sum of all intervals)
186 SkASSERT(info.fPhase >= 0 && info.fPhase < info.fIntervals[0] + info.fIntervals[1]);
187
egdaniele61c4112014-06-12 10:24:21 -0700188 SkScalar srcPhase = info.fPhase;
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000189
190 // Rotate the src pts so they are aligned horizontally with pts[0].fX < pts[1].fX
191 SkMatrix srcRotInv;
192 SkPoint ptsRot[2];
193 if (pts[0].fY != pts[1].fY || pts[0].fX > pts[1].fX) {
egdaniele61c4112014-06-12 10:24:21 -0700194 SkMatrix rotMatrix;
195 align_to_x_axis(pts, &rotMatrix, ptsRot);
196 if(!rotMatrix.invert(&srcRotInv)) {
197 GrPrintf("Failed to create invertible rotation matrix!\n");
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000198 return false;
199 }
200 } else {
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000201 srcRotInv.reset();
202 memcpy(ptsRot, pts, 2 * sizeof(SkPoint));
203 }
204
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000205 bool useAA = paint.isAntiAlias();
skia.committer@gmail.com3b9e8be2014-05-20 03:05:34 +0000206
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000207 // Scale corrections of intervals and stroke from view matrix
208 SkScalar parallelScale;
209 SkScalar perpScale;
egdaniele61c4112014-06-12 10:24:21 -0700210 calc_dash_scaling(&parallelScale, &perpScale, vm, ptsRot);
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000211
egdanielf767e792014-07-02 06:21:32 -0700212 bool hasCap = SkPaint::kButt_Cap != cap && 0 != srcStrokeWidth;
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000213
214 // We always want to at least stroke out half a pixel on each side in device space
215 // so 0.5f / perpScale gives us this min in src space
egdaniele61c4112014-06-12 10:24:21 -0700216 SkScalar halfSrcStroke = SkMaxScalar(srcStrokeWidth * 0.5f, 0.5f / perpScale);
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000217
egdaniele61c4112014-06-12 10:24:21 -0700218 SkScalar strokeAdj;
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000219 if (!hasCap) {
egdaniele61c4112014-06-12 10:24:21 -0700220 strokeAdj = 0.f;
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000221 } else {
egdaniele61c4112014-06-12 10:24:21 -0700222 strokeAdj = halfSrcStroke;
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000223 }
224
egdaniele61c4112014-06-12 10:24:21 -0700225 SkScalar startAdj = 0;
226
227 SkMatrix combinedMatrix = srcRotInv;
228 combinedMatrix.postConcat(vm);
229
230 bool lineDone = false;
231 SkRect startRect;
232 bool hasStartRect = false;
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000233 // If we are using AA, check to see if we are drawing a partial dash at the start. If so
234 // draw it separately here and adjust our start point accordingly
235 if (useAA) {
egdaniele61c4112014-06-12 10:24:21 -0700236 if (srcPhase > 0 && srcPhase < info.fIntervals[0]) {
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000237 SkPoint startPts[2];
238 startPts[0] = ptsRot[0];
239 startPts[1].fY = startPts[0].fY;
egdaniele61c4112014-06-12 10:24:21 -0700240 startPts[1].fX = SkMinScalar(startPts[0].fX + info.fIntervals[0] - srcPhase,
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000241 ptsRot[1].fX);
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000242 startRect.set(startPts, 2);
egdaniele61c4112014-06-12 10:24:21 -0700243 startRect.outset(strokeAdj, halfSrcStroke);
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000244
egdaniele61c4112014-06-12 10:24:21 -0700245 hasStartRect = true;
246 startAdj = info.fIntervals[0] + info.fIntervals[1] - srcPhase;
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000247 }
248 }
249
250 // adjustments for start and end of bounding rect so we only draw dash intervals
251 // contained in the original line segment.
egdaniele61c4112014-06-12 10:24:21 -0700252 startAdj += calc_start_adjustment(info);
253 if (startAdj != 0) {
254 ptsRot[0].fX += startAdj;
255 srcPhase = 0;
256 }
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000257 SkScalar endingInterval = 0;
egdaniele61c4112014-06-12 10:24:21 -0700258 SkScalar endAdj = calc_end_adjustment(info, ptsRot, srcPhase, &endingInterval);
259 ptsRot[1].fX -= endAdj;
260 if (ptsRot[0].fX >= ptsRot[1].fX) {
261 lineDone = true;
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000262 }
263
egdaniele61c4112014-06-12 10:24:21 -0700264 SkRect endRect;
265 bool hasEndRect = false;
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000266 // If we are using AA, check to see if we are drawing a partial dash at then end. If so
267 // draw it separately here and adjust our end point accordingly
egdaniele61c4112014-06-12 10:24:21 -0700268 if (useAA && !lineDone) {
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000269 // If we adjusted the end then we will not be drawing a partial dash at the end.
270 // If we didn't adjust the end point then we just need to make sure the ending
271 // dash isn't a full dash
272 if (0 == endAdj && endingInterval != info.fIntervals[0]) {
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000273 SkPoint endPts[2];
274 endPts[1] = ptsRot[1];
275 endPts[0].fY = endPts[1].fY;
skia.committer@gmail.com3b9e8be2014-05-20 03:05:34 +0000276 endPts[0].fX = endPts[1].fX - endingInterval;
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000277
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000278 endRect.set(endPts, 2);
egdaniele61c4112014-06-12 10:24:21 -0700279 endRect.outset(strokeAdj, halfSrcStroke);
skia.committer@gmail.com3b9e8be2014-05-20 03:05:34 +0000280
egdaniele61c4112014-06-12 10:24:21 -0700281 hasEndRect = true;
282 endAdj = endingInterval + info.fIntervals[1];
283
284 ptsRot[1].fX -= endAdj;
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000285 if (ptsRot[0].fX >= ptsRot[1].fX) {
egdaniele61c4112014-06-12 10:24:21 -0700286 lineDone = true;
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000287 }
288 }
289 }
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000290
egdaniele61c4112014-06-12 10:24:21 -0700291 if (startAdj != 0) {
292 srcPhase = 0;
293 }
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000294
egdaniele61c4112014-06-12 10:24:21 -0700295 // Change the dashing info from src space into device space
296 SkScalar devIntervals[2];
297 devIntervals[0] = info.fIntervals[0] * parallelScale;
298 devIntervals[1] = info.fIntervals[1] * parallelScale;
299 SkScalar devPhase = srcPhase * parallelScale;
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000300 SkScalar strokeWidth = srcStrokeWidth * perpScale;
301
302 if ((strokeWidth < 1.f && !useAA) || 0.f == strokeWidth) {
303 strokeWidth = 1.f;
304 }
305
egdaniele61c4112014-06-12 10:24:21 -0700306 SkScalar halfDevStroke = strokeWidth * 0.5f;
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000307
308 if (SkPaint::kSquare_Cap == cap && 0 != srcStrokeWidth) {
309 // add cap to on interveal and remove from off interval
egdaniele61c4112014-06-12 10:24:21 -0700310 devIntervals[0] += strokeWidth;
311 devIntervals[1] -= strokeWidth;
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000312 }
egdaniele61c4112014-06-12 10:24:21 -0700313 SkScalar startOffset = devIntervals[1] * 0.5f + devPhase;
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000314
egdaniele61c4112014-06-12 10:24:21 -0700315 SkScalar bloatX = useAA ? 0.5f / parallelScale : 0.f;
316 SkScalar bloatY = useAA ? 0.5f / perpScale : 0.f;
317
318 SkScalar devBloat = useAA ? 0.5f : 0.f;
319
320 GrDrawState* drawState = target->drawState();
321 if (devIntervals[1] <= 0.f && useAA) {
322 // Case when we end up drawing a solid AA rect
323 // Reset the start rect to draw this single solid rect
324 // but it requires to upload a new intervals uniform so we can mimic
325 // one giant dash
326 ptsRot[0].fX -= hasStartRect ? startAdj : 0;
327 ptsRot[1].fX += hasEndRect ? endAdj : 0;
328 startRect.set(ptsRot, 2);
329 startRect.outset(strokeAdj, halfSrcStroke);
330 hasStartRect = true;
331 hasEndRect = false;
332 lineDone = true;
333
334 SkPoint devicePts[2];
335 vm.mapPoints(devicePts, ptsRot, 2);
336 SkScalar lineLength = SkPoint::Distance(devicePts[0], devicePts[1]);
337 if (hasCap) {
338 lineLength += 2.f * halfDevStroke;
339 }
340 devIntervals[0] = lineLength;
341 }
342 if (devIntervals[1] > 0.f || useAA) {
343 SkPathEffect::DashInfo devInfo;
344 devInfo.fPhase = devPhase;
345 devInfo.fCount = 2;
346 devInfo.fIntervals = devIntervals;
joshualittb0a8a372014-09-23 09:50:21 -0700347 GrPrimitiveEdgeType edgeType= useAA ? kFillAA_GrProcessorEdgeType :
348 kFillBW_GrProcessorEdgeType;
egdanielf767e792014-07-02 06:21:32 -0700349 bool isRoundCap = SkPaint::kRound_Cap == cap;
350 GrDashingEffect::DashCap capType = isRoundCap ? GrDashingEffect::kRound_DashCap :
351 GrDashingEffect::kNonRound_DashCap;
joshualittbd769d02014-09-04 08:56:46 -0700352 drawState->setGeometryProcessor(
joshualittb0a8a372014-09-23 09:50:21 -0700353 GrDashingEffect::Create(edgeType, devInfo, strokeWidth, capType))->unref();
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000354
joshualitt249af152014-09-15 11:41:13 -0700355 // Set up the vertex data for the line and start/end dashes
356 drawState->setVertexAttribs<gDashLineVertexAttribs>(SK_ARRAY_COUNT(gDashLineVertexAttribs),
357 sizeof(DashLineVertex));
358 } else {
359 // Set up the vertex data for the line and start/end dashes
360 drawState->setVertexAttribs<gDashLineNoAAVertexAttribs>(
361 SK_ARRAY_COUNT(gDashLineNoAAVertexAttribs), sizeof(DashLineVertex));
362 }
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000363
egdaniele61c4112014-06-12 10:24:21 -0700364 int totalRectCnt = 0;
365
366 totalRectCnt += !lineDone ? 1 : 0;
367 totalRectCnt += hasStartRect ? 1 : 0;
368 totalRectCnt += hasEndRect ? 1 : 0;
369
370 GrDrawTarget::AutoReleaseGeometry geo(target, totalRectCnt * 4, 0);
371 if (!geo.succeeded()) {
372 GrPrintf("Failed to get space for vertices!\n");
373 return false;
374 }
375
376 DashLineVertex* verts = reinterpret_cast<DashLineVertex*>(geo.vertices());
377
378 int curVIdx = 0;
379
egdanielf767e792014-07-02 06:21:32 -0700380 if (SkPaint::kRound_Cap == cap && 0 != srcStrokeWidth) {
381 // need to adjust this for round caps to correctly set the dashPos attrib on vertices
382 startOffset -= halfDevStroke;
383 }
384
egdaniele61c4112014-06-12 10:24:21 -0700385 // Draw interior part of dashed line
386 if (!lineDone) {
387 SkPoint devicePts[2];
388 vm.mapPoints(devicePts, ptsRot, 2);
389 SkScalar lineLength = SkPoint::Distance(devicePts[0], devicePts[1]);
390 if (hasCap) {
391 lineLength += 2.f * halfDevStroke;
392 }
393
394 SkRect bounds;
395 bounds.set(ptsRot[0].fX, ptsRot[0].fY, ptsRot[1].fX, ptsRot[1].fY);
396 bounds.outset(bloatX + strokeAdj, bloatY + halfSrcStroke);
397 setup_dashed_rect(bounds, verts, curVIdx, combinedMatrix, startOffset, devBloat,
398 lineLength, halfDevStroke);
399 curVIdx += 4;
400 }
401
402 if (hasStartRect) {
403 SkASSERT(useAA); // so that we know bloatX and bloatY have been set
404 startRect.outset(bloatX, bloatY);
405 setup_dashed_rect(startRect, verts, curVIdx, combinedMatrix, startOffset, devBloat,
406 devIntervals[0], halfDevStroke);
407 curVIdx += 4;
408 }
409
410 if (hasEndRect) {
411 SkASSERT(useAA); // so that we know bloatX and bloatY have been set
412 endRect.outset(bloatX, bloatY);
413 setup_dashed_rect(endRect, verts, curVIdx, combinedMatrix, startOffset, devBloat,
414 devIntervals[0], halfDevStroke);
415 }
416
417 target->setIndexSourceToBuffer(gpu->getContext()->getQuadIndexBuffer());
418 target->drawIndexedInstances(kTriangles_GrPrimitiveType, totalRectCnt, 4, 6);
419 target->resetIndexSource();
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000420 return true;
421}
422
423//////////////////////////////////////////////////////////////////////////////
424
egdanielf767e792014-07-02 06:21:32 -0700425class GLDashingCircleEffect;
426/*
427 * This effect will draw a dotted line (defined as a dashed lined with round caps and no on
428 * interval). The radius of the dots is given by the strokeWidth and the spacing by the DashInfo.
429 * Both of the previous two parameters are in device space. This effect also requires the setting of
430 * a vec2 vertex attribute for the the four corners of the bounding rect. This attribute is the
431 * "dash position" of each vertex. In other words it is the vertex coords (in device space) if we
432 * transform the line to be horizontal, with the start of line at the origin then shifted to the
433 * right by half the off interval. The line then goes in the positive x direction.
434 */
joshualitt249af152014-09-15 11:41:13 -0700435class DashingCircleEffect : public GrGeometryProcessor {
egdanielf767e792014-07-02 06:21:32 -0700436public:
437 typedef SkPathEffect::DashInfo DashInfo;
438
joshualittb0a8a372014-09-23 09:50:21 -0700439 static GrGeometryProcessor* Create(GrPrimitiveEdgeType edgeType,
440 const DashInfo& info,
441 SkScalar radius);
egdanielf767e792014-07-02 06:21:32 -0700442
443 virtual ~DashingCircleEffect();
444
445 static const char* Name() { return "DashingCircleEffect"; }
446
joshualitt249af152014-09-15 11:41:13 -0700447 const GrShaderVar& inCoord() const { return fInCoord; }
448
joshualittb0a8a372014-09-23 09:50:21 -0700449 GrPrimitiveEdgeType getEdgeType() const { return fEdgeType; }
egdanielf767e792014-07-02 06:21:32 -0700450
451 SkScalar getRadius() const { return fRadius; }
452
453 SkScalar getCenterX() const { return fCenterX; }
454
455 SkScalar getIntervalLength() const { return fIntervalLength; }
456
joshualittb0a8a372014-09-23 09:50:21 -0700457 typedef GLDashingCircleEffect GLProcessor;
egdanielf767e792014-07-02 06:21:32 -0700458
joshualittb0a8a372014-09-23 09:50:21 -0700459 virtual const GrBackendGeometryProcessorFactory& getFactory() const SK_OVERRIDE;
egdanielf767e792014-07-02 06:21:32 -0700460
461private:
joshualittb0a8a372014-09-23 09:50:21 -0700462 DashingCircleEffect(GrPrimitiveEdgeType edgeType, const DashInfo& info, SkScalar radius);
egdanielf767e792014-07-02 06:21:32 -0700463
bsalomon0e08fc12014-10-15 08:19:04 -0700464 virtual bool onIsEqual(const GrGeometryProcessor& other) const SK_OVERRIDE;
egdanielf767e792014-07-02 06:21:32 -0700465
egdaniel1a8ecdf2014-10-03 06:24:12 -0700466 virtual void onComputeInvariantOutput(InvariantOutput* inout) const SK_OVERRIDE;
467
joshualittb0a8a372014-09-23 09:50:21 -0700468 GrPrimitiveEdgeType fEdgeType;
joshualitt249af152014-09-15 11:41:13 -0700469 const GrShaderVar& fInCoord;
egdanielf767e792014-07-02 06:21:32 -0700470 SkScalar fIntervalLength;
471 SkScalar fRadius;
472 SkScalar fCenterX;
473
joshualittb0a8a372014-09-23 09:50:21 -0700474 GR_DECLARE_GEOMETRY_PROCESSOR_TEST;
egdanielf767e792014-07-02 06:21:32 -0700475
joshualitt249af152014-09-15 11:41:13 -0700476 typedef GrGeometryProcessor INHERITED;
egdanielf767e792014-07-02 06:21:32 -0700477};
478
479//////////////////////////////////////////////////////////////////////////////
480
joshualitt249af152014-09-15 11:41:13 -0700481class GLDashingCircleEffect : public GrGLGeometryProcessor {
egdanielf767e792014-07-02 06:21:32 -0700482public:
joshualittb0a8a372014-09-23 09:50:21 -0700483 GLDashingCircleEffect(const GrBackendProcessorFactory&, const GrProcessor&);
egdanielf767e792014-07-02 06:21:32 -0700484
joshualittc369e7c2014-10-22 10:56:26 -0700485 virtual void emitCode(const EmitArgs&) SK_OVERRIDE;
egdanielf767e792014-07-02 06:21:32 -0700486
joshualittb0a8a372014-09-23 09:50:21 -0700487 static inline void GenKey(const GrProcessor&, const GrGLCaps&, GrProcessorKeyBuilder*);
egdanielf767e792014-07-02 06:21:32 -0700488
joshualittb0a8a372014-09-23 09:50:21 -0700489 virtual void setData(const GrGLProgramDataManager&, const GrProcessor&) SK_OVERRIDE;
egdanielf767e792014-07-02 06:21:32 -0700490
491private:
kkinnunen7510b222014-07-30 00:04:16 -0700492 GrGLProgramDataManager::UniformHandle fParamUniform;
493 SkScalar fPrevRadius;
494 SkScalar fPrevCenterX;
495 SkScalar fPrevIntervalLength;
joshualitt249af152014-09-15 11:41:13 -0700496 typedef GrGLGeometryProcessor INHERITED;
egdanielf767e792014-07-02 06:21:32 -0700497};
498
joshualittb0a8a372014-09-23 09:50:21 -0700499GLDashingCircleEffect::GLDashingCircleEffect(const GrBackendProcessorFactory& factory,
500 const GrProcessor&)
egdanielf767e792014-07-02 06:21:32 -0700501 : INHERITED (factory) {
502 fPrevRadius = SK_ScalarMin;
503 fPrevCenterX = SK_ScalarMin;
504 fPrevIntervalLength = SK_ScalarMax;
505}
506
joshualittc369e7c2014-10-22 10:56:26 -0700507void GLDashingCircleEffect::emitCode(const EmitArgs& args) {
508 const DashingCircleEffect& dce = args.fGP.cast<DashingCircleEffect>();
egdanielf767e792014-07-02 06:21:32 -0700509 const char *paramName;
510 // The param uniforms, xyz, refer to circle radius - 0.5, cicles center x coord, and
511 // the total interval length of the dash.
joshualittc369e7c2014-10-22 10:56:26 -0700512 fParamUniform = args.fPB->addUniform(GrGLProgramBuilder::kFragment_Visibility,
513 kVec3f_GrSLType,
514 "params",
515 &paramName);
egdanielf767e792014-07-02 06:21:32 -0700516
joshualitt74077b92014-10-24 11:26:03 -0700517 GrGLVertToFrag v(kVec2f_GrSLType);
518 args.fPB->addVarying("Coord", &v);
joshualitt30ba4362014-08-21 20:18:45 -0700519
joshualittc369e7c2014-10-22 10:56:26 -0700520 GrGLVertexBuilder* vsBuilder = args.fPB->getVertexShaderBuilder();
joshualitt74077b92014-10-24 11:26:03 -0700521 vsBuilder->codeAppendf("\t%s = %s;\n", v.vsOut(), dce.inCoord().c_str());
egdanielf767e792014-07-02 06:21:32 -0700522
523 // transforms all points so that we can compare them to our test circle
joshualittc369e7c2014-10-22 10:56:26 -0700524 GrGLGPFragmentBuilder* fsBuilder = args.fPB->getFragmentShaderBuilder();
joshualitt30ba4362014-08-21 20:18:45 -0700525 fsBuilder->codeAppendf("\t\tfloat xShifted = %s.x - floor(%s.x / %s.z) * %s.z;\n",
joshualitt74077b92014-10-24 11:26:03 -0700526 v.fsIn(), v.fsIn(), paramName, paramName);
527 fsBuilder->codeAppendf("\t\tvec2 fragPosShifted = vec2(xShifted, %s.y);\n", v.fsIn());
joshualitt30ba4362014-08-21 20:18:45 -0700528 fsBuilder->codeAppendf("\t\tvec2 center = vec2(%s.y, 0.0);\n", paramName);
529 fsBuilder->codeAppend("\t\tfloat dist = length(center - fragPosShifted);\n");
joshualittb0a8a372014-09-23 09:50:21 -0700530 if (GrProcessorEdgeTypeIsAA(dce.getEdgeType())) {
joshualitt30ba4362014-08-21 20:18:45 -0700531 fsBuilder->codeAppendf("\t\tfloat diff = dist - %s.x;\n", paramName);
532 fsBuilder->codeAppend("\t\tdiff = 1.0 - diff;\n");
533 fsBuilder->codeAppend("\t\tfloat alpha = clamp(diff, 0.0, 1.0);\n");
egdanielf767e792014-07-02 06:21:32 -0700534 } else {
joshualitt30ba4362014-08-21 20:18:45 -0700535 fsBuilder->codeAppendf("\t\tfloat alpha = 1.0;\n");
536 fsBuilder->codeAppendf("\t\talpha *= dist < %s.x + 0.5 ? 1.0 : 0.0;\n", paramName);
egdanielf767e792014-07-02 06:21:32 -0700537 }
joshualittc369e7c2014-10-22 10:56:26 -0700538 fsBuilder->codeAppendf("\t\t%s = %s;\n", args.fOutput,
539 (GrGLSLExpr4(args.fInput) * GrGLSLExpr1("alpha")).c_str());
egdanielf767e792014-07-02 06:21:32 -0700540}
541
joshualittb0a8a372014-09-23 09:50:21 -0700542void GLDashingCircleEffect::setData(const GrGLProgramDataManager& pdman
543 , const GrProcessor& processor) {
544 const DashingCircleEffect& dce = processor.cast<DashingCircleEffect>();
egdanielf767e792014-07-02 06:21:32 -0700545 SkScalar radius = dce.getRadius();
546 SkScalar centerX = dce.getCenterX();
547 SkScalar intervalLength = dce.getIntervalLength();
548 if (radius != fPrevRadius || centerX != fPrevCenterX || intervalLength != fPrevIntervalLength) {
kkinnunen7510b222014-07-30 00:04:16 -0700549 pdman.set3f(fParamUniform, radius - 0.5f, centerX, intervalLength);
egdanielf767e792014-07-02 06:21:32 -0700550 fPrevRadius = radius;
551 fPrevCenterX = centerX;
552 fPrevIntervalLength = intervalLength;
553 }
554}
555
joshualittb0a8a372014-09-23 09:50:21 -0700556void GLDashingCircleEffect::GenKey(const GrProcessor& processor, const GrGLCaps&,
557 GrProcessorKeyBuilder* b) {
558 const DashingCircleEffect& dce = processor.cast<DashingCircleEffect>();
bsalomon63e99f72014-07-21 08:03:14 -0700559 b->add32(dce.getEdgeType());
egdanielf767e792014-07-02 06:21:32 -0700560}
561
562//////////////////////////////////////////////////////////////////////////////
563
joshualittb0a8a372014-09-23 09:50:21 -0700564GrGeometryProcessor* DashingCircleEffect::Create(GrPrimitiveEdgeType edgeType, const DashInfo& info,
565 SkScalar radius) {
egdanielf767e792014-07-02 06:21:32 -0700566 if (info.fCount != 2 || info.fIntervals[0] != 0) {
567 return NULL;
568 }
569
bsalomon55fad7a2014-07-08 07:34:20 -0700570 return SkNEW_ARGS(DashingCircleEffect, (edgeType, info, radius));
egdanielf767e792014-07-02 06:21:32 -0700571}
572
573DashingCircleEffect::~DashingCircleEffect() {}
574
egdaniel1a8ecdf2014-10-03 06:24:12 -0700575void DashingCircleEffect::onComputeInvariantOutput(InvariantOutput* inout) const {
egdanielccb2e382014-10-13 12:53:46 -0700576 inout->mulByUnknownAlpha();
egdanielf767e792014-07-02 06:21:32 -0700577}
578
joshualittb0a8a372014-09-23 09:50:21 -0700579const GrBackendGeometryProcessorFactory& DashingCircleEffect::getFactory() const {
580 return GrTBackendGeometryProcessorFactory<DashingCircleEffect>::getInstance();
egdanielf767e792014-07-02 06:21:32 -0700581}
582
joshualittb0a8a372014-09-23 09:50:21 -0700583DashingCircleEffect::DashingCircleEffect(GrPrimitiveEdgeType edgeType, const DashInfo& info,
egdanielf767e792014-07-02 06:21:32 -0700584 SkScalar radius)
joshualitt249af152014-09-15 11:41:13 -0700585 : fEdgeType(edgeType)
586 , fInCoord(this->addVertexAttrib(GrShaderVar("inCoord",
587 kVec2f_GrSLType,
588 GrShaderVar::kAttribute_TypeModifier))) {
egdanielf767e792014-07-02 06:21:32 -0700589 SkScalar onLen = info.fIntervals[0];
590 SkScalar offLen = info.fIntervals[1];
591 fIntervalLength = onLen + offLen;
592 fRadius = radius;
593 fCenterX = SkScalarHalf(offLen);
egdanielf767e792014-07-02 06:21:32 -0700594}
595
bsalomon0e08fc12014-10-15 08:19:04 -0700596bool DashingCircleEffect::onIsEqual(const GrGeometryProcessor& other) const {
joshualitt49586be2014-09-16 08:21:41 -0700597 const DashingCircleEffect& dce = other.cast<DashingCircleEffect>();
egdanielf767e792014-07-02 06:21:32 -0700598 return (fEdgeType == dce.fEdgeType &&
599 fIntervalLength == dce.fIntervalLength &&
600 fRadius == dce.fRadius &&
601 fCenterX == dce.fCenterX);
602}
603
joshualittb0a8a372014-09-23 09:50:21 -0700604GR_DEFINE_GEOMETRY_PROCESSOR_TEST(DashingCircleEffect);
egdanielf767e792014-07-02 06:21:32 -0700605
joshualittb0a8a372014-09-23 09:50:21 -0700606GrGeometryProcessor* DashingCircleEffect::TestCreate(SkRandom* random,
607 GrContext*,
608 const GrDrawTargetCaps& caps,
609 GrTexture*[]) {
610 GrPrimitiveEdgeType edgeType = static_cast<GrPrimitiveEdgeType>(random->nextULessThan(
611 kGrProcessorEdgeTypeCnt));
egdanielf767e792014-07-02 06:21:32 -0700612 SkScalar strokeWidth = random->nextRangeScalar(0, 100.f);
613 DashInfo info;
614 info.fCount = 2;
615 SkAutoTArray<SkScalar> intervals(info.fCount);
616 info.fIntervals = intervals.get();
617 info.fIntervals[0] = 0;
618 info.fIntervals[1] = random->nextRangeScalar(0, 10.f);
619 info.fPhase = random->nextRangeScalar(0, info.fIntervals[1]);
620
joshualittb0a8a372014-09-23 09:50:21 -0700621 return DashingCircleEffect::Create(edgeType, info, strokeWidth);
egdanielf767e792014-07-02 06:21:32 -0700622}
623
624//////////////////////////////////////////////////////////////////////////////
625
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000626class GLDashingLineEffect;
627
egdanielf767e792014-07-02 06:21:32 -0700628/*
629 * This effect will draw a dashed line. The width of the dash is given by the strokeWidth and the
630 * length and spacing by the DashInfo. Both of the previous two parameters are in device space.
631 * This effect also requires the setting of a vec2 vertex attribute for the the four corners of the
632 * bounding rect. This attribute is the "dash position" of each vertex. In other words it is the
633 * vertex coords (in device space) if we transform the line to be horizontal, with the start of
634 * line at the origin then shifted to the right by half the off interval. The line then goes in the
635 * positive x direction.
636 */
joshualitt249af152014-09-15 11:41:13 -0700637class DashingLineEffect : public GrGeometryProcessor {
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000638public:
639 typedef SkPathEffect::DashInfo DashInfo;
640
joshualittb0a8a372014-09-23 09:50:21 -0700641 static GrGeometryProcessor* Create(GrPrimitiveEdgeType edgeType,
642 const DashInfo& info,
643 SkScalar strokeWidth);
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000644
645 virtual ~DashingLineEffect();
646
647 static const char* Name() { return "DashingEffect"; }
648
joshualitt249af152014-09-15 11:41:13 -0700649 const GrShaderVar& inCoord() const { return fInCoord; }
650
joshualittb0a8a372014-09-23 09:50:21 -0700651 GrPrimitiveEdgeType getEdgeType() const { return fEdgeType; }
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000652
653 const SkRect& getRect() const { return fRect; }
654
655 SkScalar getIntervalLength() const { return fIntervalLength; }
656
joshualittb0a8a372014-09-23 09:50:21 -0700657 typedef GLDashingLineEffect GLProcessor;
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000658
joshualittb0a8a372014-09-23 09:50:21 -0700659 virtual const GrBackendGeometryProcessorFactory& getFactory() const SK_OVERRIDE;
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000660
661private:
joshualittb0a8a372014-09-23 09:50:21 -0700662 DashingLineEffect(GrPrimitiveEdgeType edgeType, const DashInfo& info, SkScalar strokeWidth);
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000663
bsalomon0e08fc12014-10-15 08:19:04 -0700664 virtual bool onIsEqual(const GrGeometryProcessor& other) const SK_OVERRIDE;
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000665
egdaniel1a8ecdf2014-10-03 06:24:12 -0700666 virtual void onComputeInvariantOutput(InvariantOutput* inout) const SK_OVERRIDE;
667
joshualittb0a8a372014-09-23 09:50:21 -0700668 GrPrimitiveEdgeType fEdgeType;
joshualitt249af152014-09-15 11:41:13 -0700669 const GrShaderVar& fInCoord;
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000670 SkRect fRect;
671 SkScalar fIntervalLength;
672
joshualittb0a8a372014-09-23 09:50:21 -0700673 GR_DECLARE_GEOMETRY_PROCESSOR_TEST;
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000674
joshualitt249af152014-09-15 11:41:13 -0700675 typedef GrGeometryProcessor INHERITED;
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000676};
677
678//////////////////////////////////////////////////////////////////////////////
679
joshualitt249af152014-09-15 11:41:13 -0700680class GLDashingLineEffect : public GrGLGeometryProcessor {
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000681public:
joshualittb0a8a372014-09-23 09:50:21 -0700682 GLDashingLineEffect(const GrBackendProcessorFactory&, const GrProcessor&);
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000683
joshualittc369e7c2014-10-22 10:56:26 -0700684 virtual void emitCode(const EmitArgs&) SK_OVERRIDE;
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000685
joshualittb0a8a372014-09-23 09:50:21 -0700686 static inline void GenKey(const GrProcessor&, const GrGLCaps&, GrProcessorKeyBuilder*);
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000687
joshualittb0a8a372014-09-23 09:50:21 -0700688 virtual void setData(const GrGLProgramDataManager&, const GrProcessor&) SK_OVERRIDE;
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000689
690private:
kkinnunen7510b222014-07-30 00:04:16 -0700691 GrGLProgramDataManager::UniformHandle fRectUniform;
692 GrGLProgramDataManager::UniformHandle fIntervalUniform;
693 SkRect fPrevRect;
694 SkScalar fPrevIntervalLength;
joshualitt249af152014-09-15 11:41:13 -0700695 typedef GrGLGeometryProcessor INHERITED;
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000696};
697
joshualittb0a8a372014-09-23 09:50:21 -0700698GLDashingLineEffect::GLDashingLineEffect(const GrBackendProcessorFactory& factory,
699 const GrProcessor&)
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000700 : INHERITED (factory) {
701 fPrevRect.fLeft = SK_ScalarNaN;
702 fPrevIntervalLength = SK_ScalarMax;
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000703}
704
joshualittc369e7c2014-10-22 10:56:26 -0700705void GLDashingLineEffect::emitCode(const EmitArgs& args) {
706 const DashingLineEffect& de = args.fGP.cast<DashingLineEffect>();
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000707 const char *rectName;
708 // The rect uniform's xyzw refer to (left + 0.5, top + 0.5, right - 0.5, bottom - 0.5),
709 // respectively.
joshualittc369e7c2014-10-22 10:56:26 -0700710 fRectUniform = args.fPB->addUniform(GrGLProgramBuilder::kFragment_Visibility,
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000711 kVec4f_GrSLType,
712 "rect",
713 &rectName);
714 const char *intervalName;
715 // The interval uniform's refers to the total length of the interval (on + off)
joshualittc369e7c2014-10-22 10:56:26 -0700716 fIntervalUniform = args.fPB->addUniform(GrGLProgramBuilder::kFragment_Visibility,
717 kFloat_GrSLType,
718 "interval",
719 &intervalName);
egdaniele61c4112014-06-12 10:24:21 -0700720
joshualitt74077b92014-10-24 11:26:03 -0700721 GrGLVertToFrag v(kVec2f_GrSLType);
722 args.fPB->addVarying("Coord", &v);
joshualittc369e7c2014-10-22 10:56:26 -0700723 GrGLVertexBuilder* vsBuilder = args.fPB->getVertexShaderBuilder();
joshualitt74077b92014-10-24 11:26:03 -0700724 vsBuilder->codeAppendf("\t%s = %s;\n", v.vsOut(), de.inCoord().c_str());
egdaniele61c4112014-06-12 10:24:21 -0700725
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000726 // transforms all points so that we can compare them to our test rect
joshualittc369e7c2014-10-22 10:56:26 -0700727 GrGLGPFragmentBuilder* fsBuilder = args.fPB->getFragmentShaderBuilder();
joshualitt30ba4362014-08-21 20:18:45 -0700728 fsBuilder->codeAppendf("\t\tfloat xShifted = %s.x - floor(%s.x / %s) * %s;\n",
joshualitt74077b92014-10-24 11:26:03 -0700729 v.fsIn(), v.fsIn(), intervalName, intervalName);
730 fsBuilder->codeAppendf("\t\tvec2 fragPosShifted = vec2(xShifted, %s.y);\n", v.fsIn());
joshualittb0a8a372014-09-23 09:50:21 -0700731 if (GrProcessorEdgeTypeIsAA(de.getEdgeType())) {
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000732 // The amount of coverage removed in x and y by the edges is computed as a pair of negative
733 // numbers, xSub and ySub.
joshualitt30ba4362014-08-21 20:18:45 -0700734 fsBuilder->codeAppend("\t\tfloat xSub, ySub;\n");
735 fsBuilder->codeAppendf("\t\txSub = min(fragPosShifted.x - %s.x, 0.0);\n", rectName);
736 fsBuilder->codeAppendf("\t\txSub += min(%s.z - fragPosShifted.x, 0.0);\n", rectName);
737 fsBuilder->codeAppendf("\t\tySub = min(fragPosShifted.y - %s.y, 0.0);\n", rectName);
738 fsBuilder->codeAppendf("\t\tySub += min(%s.w - fragPosShifted.y, 0.0);\n", rectName);
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000739 // Now compute coverage in x and y and multiply them to get the fraction of the pixel
740 // covered.
joshualitt30ba4362014-08-21 20:18:45 -0700741 fsBuilder->codeAppendf("\t\tfloat alpha = (1.0 + max(xSub, -1.0)) * (1.0 + max(ySub, -1.0));\n");
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000742 } else {
743 // Assuming the bounding geometry is tight so no need to check y values
joshualitt30ba4362014-08-21 20:18:45 -0700744 fsBuilder->codeAppendf("\t\tfloat alpha = 1.0;\n");
745 fsBuilder->codeAppendf("\t\talpha *= (fragPosShifted.x - %s.x) > -0.5 ? 1.0 : 0.0;\n", rectName);
746 fsBuilder->codeAppendf("\t\talpha *= (%s.z - fragPosShifted.x) >= -0.5 ? 1.0 : 0.0;\n", rectName);
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000747 }
joshualittc369e7c2014-10-22 10:56:26 -0700748 fsBuilder->codeAppendf("\t\t%s = %s;\n", args.fOutput,
749 (GrGLSLExpr4(args.fInput) * GrGLSLExpr1("alpha")).c_str());
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000750}
751
joshualittb0a8a372014-09-23 09:50:21 -0700752void GLDashingLineEffect::setData(const GrGLProgramDataManager& pdman,
753 const GrProcessor& processor) {
754 const DashingLineEffect& de = processor.cast<DashingLineEffect>();
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000755 const SkRect& rect = de.getRect();
756 SkScalar intervalLength = de.getIntervalLength();
757 if (rect != fPrevRect || intervalLength != fPrevIntervalLength) {
kkinnunen7510b222014-07-30 00:04:16 -0700758 pdman.set4f(fRectUniform, rect.fLeft + 0.5f, rect.fTop + 0.5f,
759 rect.fRight - 0.5f, rect.fBottom - 0.5f);
760 pdman.set1f(fIntervalUniform, intervalLength);
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000761 fPrevRect = rect;
762 fPrevIntervalLength = intervalLength;
763 }
764}
765
joshualittb0a8a372014-09-23 09:50:21 -0700766void GLDashingLineEffect::GenKey(const GrProcessor& processor, const GrGLCaps&,
767 GrProcessorKeyBuilder* b) {
768 const DashingLineEffect& de = processor.cast<DashingLineEffect>();
bsalomon63e99f72014-07-21 08:03:14 -0700769 b->add32(de.getEdgeType());
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000770}
771
772//////////////////////////////////////////////////////////////////////////////
skia.committer@gmail.com3b9e8be2014-05-20 03:05:34 +0000773
joshualittb0a8a372014-09-23 09:50:21 -0700774GrGeometryProcessor* DashingLineEffect::Create(GrPrimitiveEdgeType edgeType,
775 const DashInfo& info,
776 SkScalar strokeWidth) {
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000777 if (info.fCount != 2) {
778 return NULL;
779 }
780
bsalomon55fad7a2014-07-08 07:34:20 -0700781 return SkNEW_ARGS(DashingLineEffect, (edgeType, info, strokeWidth));
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000782}
783
784DashingLineEffect::~DashingLineEffect() {}
785
egdaniel1a8ecdf2014-10-03 06:24:12 -0700786void DashingLineEffect::onComputeInvariantOutput(InvariantOutput* inout) const {
egdanielccb2e382014-10-13 12:53:46 -0700787 inout->mulByUnknownAlpha();
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000788}
789
joshualittb0a8a372014-09-23 09:50:21 -0700790const GrBackendGeometryProcessorFactory& DashingLineEffect::getFactory() const {
791 return GrTBackendGeometryProcessorFactory<DashingLineEffect>::getInstance();
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000792}
793
joshualittb0a8a372014-09-23 09:50:21 -0700794DashingLineEffect::DashingLineEffect(GrPrimitiveEdgeType edgeType, const DashInfo& info,
egdaniele61c4112014-06-12 10:24:21 -0700795 SkScalar strokeWidth)
joshualitt249af152014-09-15 11:41:13 -0700796 : fEdgeType(edgeType)
797 , fInCoord(this->addVertexAttrib(GrShaderVar("inCoord",
798 kVec2f_GrSLType,
799 GrShaderVar::kAttribute_TypeModifier))) {
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000800 SkScalar onLen = info.fIntervals[0];
801 SkScalar offLen = info.fIntervals[1];
802 SkScalar halfOffLen = SkScalarHalf(offLen);
803 SkScalar halfStroke = SkScalarHalf(strokeWidth);
804 fIntervalLength = onLen + offLen;
805 fRect.set(halfOffLen, -halfStroke, halfOffLen + onLen, halfStroke);
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000806}
807
bsalomon0e08fc12014-10-15 08:19:04 -0700808bool DashingLineEffect::onIsEqual(const GrGeometryProcessor& other) const {
joshualitt49586be2014-09-16 08:21:41 -0700809 const DashingLineEffect& de = other.cast<DashingLineEffect>();
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000810 return (fEdgeType == de.fEdgeType &&
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000811 fRect == de.fRect &&
812 fIntervalLength == de.fIntervalLength);
813}
814
joshualittb0a8a372014-09-23 09:50:21 -0700815GR_DEFINE_GEOMETRY_PROCESSOR_TEST(DashingLineEffect);
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000816
joshualittb0a8a372014-09-23 09:50:21 -0700817GrGeometryProcessor* DashingLineEffect::TestCreate(SkRandom* random,
818 GrContext*,
819 const GrDrawTargetCaps& caps,
820 GrTexture*[]) {
821 GrPrimitiveEdgeType edgeType = static_cast<GrPrimitiveEdgeType>(random->nextULessThan(
822 kGrProcessorEdgeTypeCnt));
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000823 SkScalar strokeWidth = random->nextRangeScalar(0, 100.f);
824 DashInfo info;
825 info.fCount = 2;
826 SkAutoTArray<SkScalar> intervals(info.fCount);
827 info.fIntervals = intervals.get();
828 info.fIntervals[0] = random->nextRangeScalar(0, 10.f);
829 info.fIntervals[1] = random->nextRangeScalar(0, 10.f);
830 info.fPhase = random->nextRangeScalar(0, info.fIntervals[0] + info.fIntervals[1]);
831
joshualittb0a8a372014-09-23 09:50:21 -0700832 return DashingLineEffect::Create(edgeType, info, strokeWidth);
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000833}
834
835//////////////////////////////////////////////////////////////////////////////
836
joshualittb0a8a372014-09-23 09:50:21 -0700837GrGeometryProcessor* GrDashingEffect::Create(GrPrimitiveEdgeType edgeType,
838 const SkPathEffect::DashInfo& info,
839 SkScalar strokeWidth,
840 GrDashingEffect::DashCap cap) {
egdanielf767e792014-07-02 06:21:32 -0700841 switch (cap) {
842 case GrDashingEffect::kRound_DashCap:
843 return DashingCircleEffect::Create(edgeType, info, SkScalarHalf(strokeWidth));
844 case GrDashingEffect::kNonRound_DashCap:
845 return DashingLineEffect::Create(edgeType, info, strokeWidth);
846 default:
847 SkFAIL("Unexpected dashed cap.");
848 }
849 return NULL;
commit-bot@chromium.org628ed0b2014-05-19 14:32:49 +0000850}