Lines Matching refs:matrix
56 SkMatrix* matrix = reinterpret_cast<SkMatrix*>(matrixHandle); in mapPoints() local
65 matrix->mapPoints((SkPoint*) dstArray, (const SkPoint*) srcArray, in mapPoints()
68 matrix->mapVectors((SkVector*) dstArray, (const SkVector*) srcArray, in mapPoints()
74 SkMatrix* matrix = reinterpret_cast<SkMatrix*>(matrixHandle); in mapRect__RectFRectF() local
77 jboolean rectStaysRect = matrix->mapRect(&dst_, src_); in mapRect__RectFRectF()
84 SkMatrix* matrix = reinterpret_cast<SkMatrix*>(matrixHandle); in setRectToRect() local
90 return matrix->setRectToRect(src_, dst_, stf) ? JNI_TRUE : JNI_FALSE; in setRectToRect()
96 SkMatrix* matrix = reinterpret_cast<SkMatrix*>(matrixHandle); in setPolyToPoly() local
109 result = matrix->setPolyToPoly((const SkPoint*) src, in setPolyToPoly()
116 SkMatrix* matrix = reinterpret_cast<SkMatrix*>(matrixHandle); in getValues() local
120 dst[i] = matrix->get(i); in getValues()
126 SkMatrix* matrix = reinterpret_cast<SkMatrix*>(matrixHandle); in setValues() local
131 matrix->set(i, src[i]); in setValues()
298 SkMatrix* matrix = reinterpret_cast<SkMatrix*>(matrixHandle); in postSkew__FF() local
299 matrix->postSkew(kx, ky); in postSkew__FF()
303 SkMatrix* matrix = reinterpret_cast<SkMatrix*>(matrixHandle); in postConcat() local
305 matrix->postConcat(*other); in postConcat()
309 SkMatrix* matrix = reinterpret_cast<SkMatrix*>(matrixHandle); in invert() local
311 return matrix->invert(inverse); in invert()
315 SkMatrix* matrix = reinterpret_cast<SkMatrix*>(matrixHandle); in mapRadius() local
317 result = SkScalarToFloat(matrix->mapRadius(radius)); in mapRadius()