Home | History | Annotate | Download | only in tests

Lines Matching defs:mats

240     SkMatrix mats[2*SK_ARRAY_COUNT(baseMats)];
242 mats[i] = baseMats[i];
243 bool invertible = mats[i].invert(&mats[i + SK_ARRAY_COUNT(baseMats)]);
251 int x = rand.nextU() % SK_ARRAY_COUNT(mats);
252 mat.postConcat(mats[x]);
704 SkMatrix mats[kMatrixCount];
707 mats[i].set(j, rand.nextRangeF(-3000.f, 3000.f));
734 mats[i].mapHomogeneousPoints(&dst, &zeros, 1);
741 mats[0].mapHomogeneousPoints(nullptr, nullptr, 0);
793 mats[i].mapHomogeneousPoints(&dst, &randTriples[j], 1);
794 REPORTER_ASSERT(reporter, naive_homogeneous_mapping(mats[i], randTriples[j], dst));