Searched defs:mapPoints (Results 1 - 3 of 3) sorted by relevance

/external/skia/include/core/
H A DSkMatrix.h49 like mapPoints, to optimize its inner loops to only perform as much
365 void mapPoints(SkPoint dst[], const SkPoint src[], int count) const;
374 void mapPoints(SkPoint pts[], int count) const { function in class:SkMatrix
375 this->mapPoints(pts, pts, count);
378 /** Like mapPoints but with custom byte stride between the points. Stride
385 this->mapPoints(pts, pts, 1);
390 /** Like mapPoints but with custom byte stride between the points.
397 this->mapPoints(dst, src, 1);
410 This is similar to mapPoints, but ignores any translation in the matrix.
422 This is similar to mapPoints, bu
[all...]
/external/skia/src/core/
H A DSkMatrix.cpp1074 void SkMatrix::mapPoints(SkPoint dst[], const SkPoint src[], int count) const { function in class:SkMatrix
1102 tmp.mapPoints(dst, src, count);
1110 this->mapPoints((SkPoint*)dst, (const SkPoint*)&src, 2);
1117 this->mapPoints(quad, quad, 4);
/external/webkit/Source/WebKit/android/plugins/
H A Dandroid_npapi.h313 void (*mapPoints)(ANPMatrix*, float dst[], const float src[], member in struct:ANPMatrixInterfaceV0

Completed in 92 milliseconds