Home
last modified time | relevance | path

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

/frameworks/native/libs/renderengine/gl/
DGLSkiaShadowPort.cpp103 static int circle_type_to_vert_count(bool stroked) { in circle_type_to_vert_count() argument
104 return stroked ? kVertsPerStrokeCircle : kVertsPerFillCircle; in circle_type_to_vert_count()
107 static int circle_type_to_index_count(bool stroked) { in circle_type_to_index_count() argument
108 return stroked ? kIndicesPerStrokeCircle : kIndicesPerFillCircle; in circle_type_to_index_count()
111 static const uint16_t* circle_type_to_indices(bool stroked) { in circle_type_to_indices() argument
112 return stroked ? gStrokeCircleIndices : gFillCircleIndices; in circle_type_to_indices()