aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar reed@google.com <reed@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-01-25 14:52:11 +0000
committerGravatar reed@google.com <reed@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-01-25 14:52:11 +0000
commit70375529cc0bed874356a3e48a87b62c10a3733f (patch)
tree5f4bdc7e09de020606bfb63dd48f0dfeaeb2ca76 /src
parentd76007326615f3d79bf3910d5b228a48c9cb9995 (diff)
doh: use *srcPtr instead of src (which is now obsolete) when we check for specialLine
git-svn-id: http://skia.googlecode.com/svn/trunk@7392 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'src')
-rw-r--r--src/effects/SkDashPathEffect.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/effects/SkDashPathEffect.cpp b/src/effects/SkDashPathEffect.cpp
index ac0b5a1fd0..be73160fa9 100644
--- a/src/effects/SkDashPathEffect.cpp
+++ b/src/effects/SkDashPathEffect.cpp
@@ -250,7 +250,7 @@ bool SkDashPathEffect::filterPath(SkPath* dst, const SkPath& src,
}
SpecialLineRec lineRec;
- bool specialLine = lineRec.init(src, dst, rec, fCount >> 1, fIntervalLength);
+ bool specialLine = lineRec.init(*srcPtr, dst, rec, fCount >> 1, fIntervalLength);
SkPathMeasure meas(*srcPtr, false);