Searched refs:pointsLength (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/libs/hwui/
H A DSpotShadow.h46 static void xsort(Vector2* points, int pointsLength);
47 static int hull(Vector2* points, int pointsLength, Vector2* retPoly);
H A DSpotShadow.cpp141 * @param pointsLength the number of vertices of the polygon.
143 void SpotShadow::xsort(Vector2* points, int pointsLength) { argument
144 quicksortX(points, 0, pointsLength - 1);
151 * @param pointsLength the number of vertices of the polygon.
155 int SpotShadow::hull(Vector2* points, int pointsLength, Vector2* retPoly) { argument
156 xsort(points, pointsLength);
157 int n = pointsLength;

Completed in 96 milliseconds