Home | History | Annotate | Download | only in json

Lines Matching refs:dashInfo

366         SkPathEffect::DashInfo dashInfo;
367 SkPathEffect::DashType dashType = pathEffect->asADash(&dashInfo);
369 dashInfo.fIntervals = (SkScalar*) sk_malloc_throw(dashInfo.fCount * sizeof(SkScalar));
370 pathEffect->asADash(&dashInfo);
373 for (int32_t i = 0; i < dashInfo.fCount; i++) {
374 intervals.append(Json::Value(dashInfo.fIntervals[i]));
376 free(dashInfo.fIntervals);
378 dashing[SKJSONCANVAS_ATTRIBUTE_PHASE] = dashInfo.fPhase;