Home
last modified time | relevance | path

Searched refs:outputVertices (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/libs/hwui/
DPathTessellator.h92 Vector<Vertex> &outputVertices);
97 Vector<Vertex> &outputVertices);
108 Vector<Vertex> &outputVertices, int depth = 0);
120 Vector<Vertex> &outputVertices, int depth = 0);
DPathTessellator.cpp905 Vector<Vertex>& outputVertices) { in approximatePathOutlineVertices() argument
906 return approximatePathOutlineVertices(path, true, 1.0f, 1.0f, thresholdSquared, outputVertices); in approximatePathOutlineVertices()
918 Vector<Vertex>& outputVertices) { in approximatePathOutlineVertices() argument
929 pushToVector(outputVertices, pts[0].x(), pts[0].y()); in approximatePathOutlineVertices()
937 pushToVector(outputVertices, pts[1].x(), pts[1].y()); in approximatePathOutlineVertices()
945 sqrInvScaleX, sqrInvScaleY, thresholdSquared, outputVertices); in approximatePathOutlineVertices()
954 sqrInvScaleX, sqrInvScaleY, thresholdSquared, outputVertices); in approximatePathOutlineVertices()
961 int size = outputVertices.size(); in approximatePathOutlineVertices()
962 if (size >= 2 && outputVertices[0].x == outputVertices[size - 1].x && in approximatePathOutlineVertices()
963 outputVertices[0].y == outputVertices[size - 1].y) { in approximatePathOutlineVertices()
[all …]