Home | History | Annotate | Download | only in tests

Lines Matching refs:mats

187     SkMatrix mats[2*SK_ARRAY_COUNT(baseMats)];
189 mats[i] = baseMats[i];
190 bool invertable = mats[i].invert(&mats[i + SK_ARRAY_COUNT(baseMats)]);
198 int x = rand.nextU() % SK_ARRAY_COUNT(mats);
199 mat.postConcat(mats[x]);
607 SkMatrix mats[kMatrixCount];
610 mats[i].set(j, rand.nextRangeF(-3000.f, 3000.f));
638 mats[i].mapHomogeneousPoints(dst, zeros, 1);
645 mats[0].mapHomogeneousPoints(NULL, NULL, 0);
697 mats[i].mapHomogeneousPoints(dst, &randTriples[j*3], 1);
698 REPORTER_ASSERT(reporter, naive_homogeneous_mapping(mats[i], &randTriples[j*3], dst));