Lines Matching refs:triVertices
135 static bool get_geometry(const SkPath& path, const SkMatrix& m, PLSVertices& triVertices, in get_geometry() argument
237 triVertices.push_back({ bloated[0], p1, p2, p3, winding }); in get_geometry()
238 triVertices.push_back({ bloated[1], p1, p2, p3, winding }); in get_geometry()
239 triVertices.push_back({ bloated[2], p1, p2, p3, winding }); in get_geometry()
246 triVertices.push_back({ { minX, minY }, p1, p2, p3, winding }); in get_geometry()
247 triVertices.push_back({ { maxX, minY }, p1, p2, p3, winding }); in get_geometry()
248 triVertices.push_back({ { minX, maxY }, p1, p2, p3, winding }); in get_geometry()
249 triVertices.push_back({ { maxX, minY }, p1, p2, p3, winding }); in get_geometry()
250 triVertices.push_back({ { maxX, maxY }, p1, p2, p3, winding }); in get_geometry()
251 triVertices.push_back({ { minX, maxY }, p1, p2, p3, winding }); in get_geometry()
869 PLSVertices triVertices; in onPrepareDraws() local
871 if (!get_geometry(*pathPtr, *viewMatrix, triVertices, quadVertices, rp, bounds)) { in onPrepareDraws()
875 if (triVertices.count()) { in onPrepareDraws()
880 triStride, triVertices.count(), &triVertexBuffer, &firstTriVertex)); in onPrepareDraws()
885 for (int i = 0; i < triVertices.count(); ++i) { in onPrepareDraws()
886 triVerts[i] = triVertices[i]; in onPrepareDraws()
889 triVertices.count()); in onPrepareDraws()