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

/external/chromium_org/third_party/skia/include/core/
H A DSkMatrix.h388 void mapPoints(SkPoint dst[], const SkPoint src[], int count) const;
397 void mapPoints(SkPoint pts[], int count) const { function in class:SkMatrix
398 this->mapPoints(pts, pts, count);
401 /** Like mapPoints but with custom byte stride between the points. Stride
408 this->mapPoints(pts, pts, 1);
413 /** Like mapPoints but with custom byte stride between the points.
420 this->mapPoints(dst, src, 1);
433 This is similar to mapPoints, but ignores any translation in the matrix.
445 This is similar to mapPoints, but ignores any translation in the matrix.
/external/skia/include/core/
H A DSkMatrix.h388 void mapPoints(SkPoint dst[], const SkPoint src[], int count) const;
397 void mapPoints(SkPoint pts[], int count) const { function in class:SkMatrix
398 this->mapPoints(pts, pts, count);
401 /** Like mapPoints but with custom byte stride between the points. Stride
408 this->mapPoints(pts, pts, 1);
413 /** Like mapPoints but with custom byte stride between the points.
420 this->mapPoints(dst, src, 1);
433 This is similar to mapPoints, but ignores any translation in the matrix.
445 This is similar to mapPoints, but ignores any translation in the matrix.
/external/chromium_org/third_party/skia/src/core/
H A DSkMatrix.cpp1220 void SkMatrix::mapPoints(SkPoint dst[], const SkPoint src[], int count) const { function in class:SkMatrix
1248 tmp.mapPoints(dst, src, count);
1256 this->mapPoints((SkPoint*)dst, (const SkPoint*)&src, 2);
1263 this->mapPoints(quad, quad, 4);
/external/skia/src/core/
H A DSkMatrix.cpp1220 void SkMatrix::mapPoints(SkPoint dst[], const SkPoint src[], int count) const { function in class:SkMatrix
1248 tmp.mapPoints(dst, src, count);
1256 this->mapPoints((SkPoint*)dst, (const SkPoint*)&src, 2);
1263 this->mapPoints(quad, quad, 4);

Completed in 170 milliseconds