| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2015 Google Inc. | 2 * Copyright 2015 Google Inc. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 #include "GrDashLinePathRenderer.h" | 8 #include "GrDashLinePathRenderer.h" |
| 9 | 9 |
| 10 #include "GrGpu.h" | 10 #include "GrGpu.h" |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 | 25 |
| 26 bool GrDashLinePathRenderer::onDrawPath(GrDrawTarget* target, | 26 bool GrDashLinePathRenderer::onDrawPath(GrDrawTarget* target, |
| 27 GrPipelineBuilder* pipelineBuilder, | 27 GrPipelineBuilder* pipelineBuilder, |
| 28 GrColor color, | 28 GrColor color, |
| 29 const SkMatrix& viewMatrix, | 29 const SkMatrix& viewMatrix, |
| 30 const SkPath& path, | 30 const SkPath& path, |
| 31 const GrStrokeInfo& stroke, | 31 const GrStrokeInfo& stroke, |
| 32 bool useAA) { | 32 bool useAA) { |
| 33 SkPoint pts[2]; | 33 SkPoint pts[2]; |
| 34 SkAssertResult(path.isLine(pts)); | 34 SkAssertResult(path.isLine(pts)); |
| 35 return GrDashingEffect::DrawDashLine(target, pipelineBuilder, color, | 35 return GrDashingEffect::DrawDashLine(target, *pipelineBuilder, color, |
| 36 viewMatrix, pts, useAA, stroke); | 36 viewMatrix, pts, useAA, stroke); |
| 37 } | 37 } |
| OLD | NEW |