Home | History | Annotate | Download | only in gpu

Lines Matching refs:dashInfo

245     SkPathEffect::DashInfo dashInfo;
246 dashInfo.fCount = random->nextRangeU(1, 50) * 2;
247 dashInfo.fIntervals = new SkScalar[dashInfo.fCount];
249 for (int i = 0; i < dashInfo.fCount; i++) {
250 dashInfo.fIntervals[i] = random->nextRangeScalar(SkDoubleToScalar(0.01),
252 sum += dashInfo.fIntervals[i];
254 dashInfo.fPhase = random->nextRangeScalar(0, sum);
255 strokeInfo.setDashInfo(dashInfo);
256 delete[] dashInfo.fIntervals;