Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(10)

Side by Side Diff: src/gpu/effects/GrDashingEffect.h

Issue 326103002: Use vertex attributes for dash effect in gpu (Closed) Base URL: https://skia.googlesource.com/skia.git@dashPlumb2
Patch Set: Float fix Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/gpu/SkGpuDevice.cpp ('k') | src/gpu/effects/GrDashingEffect.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 1
2 /* 2 /*
3 * Copyright 2014 Google Inc. 3 * Copyright 2014 Google Inc.
4 * 4 *
5 * Use of this source code is governed by a BSD-style license that can be 5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 6 * found in the LICENSE file.
7 */ 7 */
8 8
9 #ifndef GrDashingEffect_DEFINED 9 #ifndef GrDashingEffect_DEFINED
10 #define GrDashingEffect_DEFINED 10 #define GrDashingEffect_DEFINED
11 11
12 #include "GrTypesPriv.h" 12 #include "GrTypesPriv.h"
13 #include "SkPathEffect.h" 13 #include "SkPathEffect.h"
14 14
15 class GrContext; 15 class GrGpu;
16 class GrDrawTarget;
17 class GrPaint;
18 class GrStrokeInfo;
16 19
17 class GrGLDashingEffect; 20 class GrGLDashingEffect;
18 class SkPath; 21 class SkPath;
19 22
20 namespace GrDashingEffect { 23 namespace GrDashingEffect {
21 bool DrawDashLine(const SkPoint pnts[2], const SkPaint& paint, GrContext* co ntext); 24 bool DrawDashLine(const SkPoint pts[2], const GrPaint& paint, const GrStroke Info& strokeInfo,
25 GrGpu* gpu, GrDrawTarget* target, const SkMatrix& vm);
22 26
23 /** 27 /**
24 * An effect that renders a dashed line. It is intended to be used as a cove rage effect. 28 * An effect that renders a dashed line. It is intended to be used as a cove rage effect.
25 * The effect is meant for dashed lines that only have a single on/off inter val pair. 29 * The effect is meant for dashed lines that only have a single on/off inter val pair.
26 * Bounding geometry is rendered and the effect computes coverage based on t he fragment's 30 * Bounding geometry is rendered and the effect computes coverage based on t he fragment's
27 * position relative to the dashed line. 31 * position relative to the dashed line.
28 */ 32 */
29 GrEffectRef* Create(GrEffectEdgeType edgeType, const SkPathEffect::DashInfo& info, 33 GrEffectRef* Create(GrEffectEdgeType edgeType, const SkPathEffect::DashInfo& info,
30 const SkMatrix& matrix, SkScalar strokeWidth); 34 SkScalar strokeWidth);
31 } 35 }
32 36
33 #endif 37 #endif
OLDNEW
« no previous file with comments | « src/gpu/SkGpuDevice.cpp ('k') | src/gpu/effects/GrDashingEffect.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698