Home
last modified time | relevance | path

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

/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/shadowutil/
DSpotShadow.java136 float[] lLower = new float[n * 2]; in hull() local
137 lLower[0] = points[(n - 1) * 2 + 0]; in hull()
138 lLower[1] = points[(n - 1) * 2 + 1]; in hull()
139 lLower[2] = points[(n - 2) * 2 + 0]; in hull()
140 lLower[3] = points[(n - 2) * 2 + 1]; in hull()
145 lLower[lLowerSize * 2 + 0] = points[i * 2 + 0]; in hull()
146 lLower[lLowerSize * 2 + 1] = points[i * 2 + 1]; in hull()
150 !rightTurn(lLower[(lLowerSize - 3) * 2], lLower[(lLowerSize - 3) * 2 + 1], in hull()
151 lLower[(lLowerSize - 2) * 2], lLower[(lLowerSize - 2) * 2 + 1], in hull()
152 lLower[(lLowerSize - 1) * 2], lLower[(lLowerSize - 1) * 2 + 1])) { in hull()
[all …]
/frameworks/base/libs/hwui/
DSpotShadow.cpp185 Vector2 lLower[n]; in hull() local
186 lLower[0] = points[n - 1]; in hull()
187 lLower[1] = points[n - 2]; in hull()
192 lLower[lLowerSize] = points[i]; in hull()
196 lLower[lLowerSize - 3].x, lLower[lLowerSize - 3].y, in hull()
197 lLower[lLowerSize - 2].x, lLower[lLowerSize - 2].y, in hull()
198 lLower[lLowerSize - 1].x, lLower[lLowerSize - 1].y)) { in hull()
200 lLower[lLowerSize - 2] = lLower[lLowerSize - 1]; in hull()
214 retPoly[outIndex] = lLower[i]; in hull()