Searched refs:dashInfo (Results 1 – 1 of 1) sorted by relevance
1122 SkPathEffect::DashInfo dashInfo; in apply_paint_patheffect() local1123 SkPathEffect::DashType dashType = pathEffect->asADash(&dashInfo); in apply_paint_patheffect()1125 dashInfo.fIntervals = (SkScalar*) sk_malloc_throw(dashInfo.fCount * sizeof(SkScalar)); in apply_paint_patheffect()1126 pathEffect->asADash(&dashInfo); in apply_paint_patheffect()1129 for (int32_t i = 0; i < dashInfo.fCount; i++) { in apply_paint_patheffect()1130 intervals.append(Json::Value(dashInfo.fIntervals[i])); in apply_paint_patheffect()1132 sk_free(dashInfo.fIntervals); in apply_paint_patheffect()1134 dashing[SKDEBUGCANVAS_ATTRIBUTE_PHASE] = dashInfo.fPhase; in apply_paint_patheffect()