Lines Matching refs:dashInfo
978 SkPathEffect::DashInfo dashInfo;
979 SkPathEffect::DashType dashType = pathEffect->asADash(&dashInfo);
981 dashInfo.fIntervals = (SkScalar*) sk_malloc_throw(dashInfo.fCount * sizeof(SkScalar));
982 pathEffect->asADash(&dashInfo);
985 for (int32_t i = 0; i < dashInfo.fCount; i++) {
986 intervals.append(Json::Value(dashInfo.fIntervals[i]));
988 sk_free(dashInfo.fIntervals);
990 dashing[SKDEBUGCANVAS_ATTRIBUTE_PHASE] = dashInfo.fPhase;