Searched refs:mats (Results 1 - 3 of 3) sorted by relevance

/external/skia/tests/
H A DDashPathEffectTest.cpp64 SkMatrix mats[kNumMats]; local
65 mats[0].reset();
66 mats[1].setRotate(90, 0.5f, 0.5f);
67 mats[2].setTranslate(10.0f, 10.0f);
78 bool actualResult = dash->asPoints(&results, src, rec, mats[i], &cull);
H A DMatrixTest.cpp226 SkMatrix mats[2*SK_ARRAY_COUNT(baseMats)]; local
228 mats[i] = baseMats[i];
229 bool invertable = mats[i].invert(&mats[i + SK_ARRAY_COUNT(baseMats)]);
237 int x = rand.nextU() % SK_ARRAY_COUNT(mats);
238 mat.postConcat(mats[x]);
676 SkMatrix mats[kMatrixCount]; local
679 mats[i].set(j, rand.nextRangeF(-3000.f, 3000.f));
707 mats[i].mapHomogeneousPoints(dst, zeros, 1);
714 mats[
[all...]
/external/opencv/cvaux/src/
H A Dcvcalibfilter.cpp351 bool CvCalibFilter::FindEtalon( CvMat** mats )
355 if( !mats || etalonPointCount == 0 )
378 if( !CV_IS_MAT(mats[i]) && !CV_IS_IMAGE(mats[i]))
384 size = cvGetSize(mats[i]);
406 if( CV_MAT_CN(cvGetElemType(mats[i])) == 1 )
407 cvCopy( mats[i], grayImg );
409 cvCvtColor( mats[i], grayImg, CV_BGR2GRAY );

Completed in 231 milliseconds