Searched refs:getPoints (Results 1 - 12 of 12) sorted by relevance

/external/skia/samplecode/
H A DSampleTriangles.cpp64 int n = path.getPoints(NULL, 0);
66 path.getPoints(pts, n);
H A DSampleText.cpp198 return path.getPoints(NULL, 0);
/external/skia/src/animator/
H A DSkMatrixParts.cpp251 int srcPts = sourcePath.getPoints(src, 4);
253 int dstPts = destPath.getPoints(dst, 4);
/external/webkit/Source/WebCore/platform/graphics/android/
H A DHarfbuzzSkia.cpp135 uint32_t numPoints = path.getPoints(0, 0);
142 path.getPoints(points, point + 1);
H A DPathAndroid.cpp75 // call getPoints(NULL), which returns the number of points,
77 return m_path->getPoints(0, 0) > 0;
/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DHarfbuzzSkia.cpp152 int numPoints = path.getPoints(0, 0);
159 path.getPoints(points, point + 1);
/external/skia/include/core/
H A DSkPath.h203 return this->getPoints(NULL, 0);
218 int getPoints(SkPoint points[], int max) const;
/external/skia/tests/
H A DPathTest.cpp213 // does getPoints return the right result
214 REPORTER_ASSERT(reporter, p.getPoints(NULL, 5) == 4);
216 int count = p.getPoints(pts, 4);
/external/webkit/Source/WebCore/platform/graphics/skia/
H A DPathSkia.cpp74 return m_path->getPoints(NULL, 0) != 0;
/external/skia/src/core/
H A DSkGlyphCache.cpp317 glyph.fPath->getPoints(NULL, 0x7FFFFFFF) * sizeof(SkPoint);
H A DSkScan_Path.cpp381 int ptCount = path.getPoints(NULL, 0);
H A DSkPath.cpp196 int SkPath::getPoints(SkPoint copy[], int max) const { function in class:SkPath

Completed in 1329 milliseconds