Home | History | Annotate | Download | only in hwui

Lines Matching refs:rectangleVertices

1223 static void handlePoint(std::vector<Vertex>& rectangleVertices, const Matrix4& transform,
1229 rectangleVertices.push_back(v);
1232 static void handlePointNoTransform(std::vector<Vertex>& rectangleVertices, float x, float y) {
1236 rectangleVertices.push_back(v);
1241 std::vector<Vertex> rectangleVertices(quadCount * 4);
1252 handlePointNoTransform(rectangleVertices, bounds.left, bounds.top);
1253 handlePointNoTransform(rectangleVertices, bounds.right, bounds.top);
1254 handlePointNoTransform(rectangleVertices, bounds.left, bounds.bottom);
1255 handlePointNoTransform(rectangleVertices, bounds.right, bounds.bottom);
1258 handlePoint(rectangleVertices, transform, bounds.left, bounds.top);
1259 handlePoint(rectangleVertices, transform, bounds.right, bounds.top);
1260 handlePoint(rectangleVertices, transform, bounds.left, bounds.bottom);
1261 handlePoint(rectangleVertices, transform, bounds.right, bounds.bottom);
1269 Vertex* vertices = &rectangleVertices[0];
1272 .setMeshIndexedQuads(vertices, rectangleVertices.size() / 4)