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
This commit is contained in:
reed@google.com 2013-01-25 14:52:11 +00:00
parent d760073266
commit 70375529cc

View File

@ -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);