Lines Matching refs:mats
253 SkMatrix mats[2*SK_ARRAY_COUNT(baseMats)];
255 mats[i] = baseMats[i];
256 bool invertible = mats[i].invert(&mats[i + SK_ARRAY_COUNT(baseMats)]);
264 int x = rand.nextU() % SK_ARRAY_COUNT(mats);
265 mat.postConcat(mats[x]);
674 SkMatrix mats[kMatrixCount];
677 mats[i].set(j, rand.nextRangeF(-3000.f, 3000.f));
704 mats[i].mapHomogeneousPoints(&dst, &zeros, 1);
711 mats[0].mapHomogeneousPoints(nullptr, (const SkPoint3*)nullptr, 0);
763 mats[i].mapHomogeneousPoints(&dst, &randTriples[j], 1);
764 REPORTER_ASSERT(reporter, naive_homogeneous_mapping(mats[i], randTriples[j], dst));