Lines Matching defs:POINT_PARAMETER
59 constexpr uint32_t POINT_PARAMETER = 3;
206 OH_Drawing_Point2D points[POINT_PARAMETER] = {pointOne, pointTwo, pointThree};
207 OH_Drawing_CanvasDrawPoints(canvas_, POINT_MODE_POINTS, POINT_PARAMETER, nullptr);
208 OH_Drawing_CanvasDrawPoints(nullptr, POINT_MODE_POINTS, POINT_PARAMETER, nullptr);
209 OH_Drawing_CanvasDrawPoints(canvas_, POINT_MODE_POINTS, POINT_PARAMETER, points);
224 OH_Drawing_Point2D points_vertices[POINT_PARAMETER] = {point_one, point_two, point_three};
229 OH_Drawing_Point2D texs_vertices[POINT_PARAMETER] = {texs_one, texs_two, texs_three};
233 OH_Drawing_CanvasDrawVertices(nullptr, VERTEX_MODE_TRIANGLES, POINT_PARAMETER, points_vertices, texs_vertices,
234 colors, POINT_PARAMETER, indices, BLEND_MODE_COLOR);
235 OH_Drawing_CanvasDrawVertices(canvas_, VERTEX_MODE_TRIANGLES, POINT_PARAMETER, nullptr, texs_vertices, colors,
236 POINT_PARAMETER, indices, BLEND_MODE_COLOR);
237 OH_Drawing_CanvasDrawVertices(canvas_, VERTEX_MODE_TRIANGLES, POINT_PARAMETER, points_vertices, nullptr, colors,
238 POINT_PARAMETER, indices, BLEND_MODE_COLOR);
239 OH_Drawing_CanvasDrawVertices(canvas_, VERTEX_MODE_TRIANGLES, POINT_PARAMETER, points_vertices, texs_vertices,
240 nullptr, POINT_PARAMETER, indices, BLEND_MODE_COLOR);
241 OH_Drawing_CanvasDrawVertices(canvas_, VERTEX_MODE_TRIANGLES, POINT_PARAMETER, points_vertices, texs_vertices,
242 colors, POINT_PARAMETER, nullptr, BLEND_MODE_COLOR);
243 OH_Drawing_CanvasDrawVertices(nullptr, VERTEX_MODE_TRIANGLES, POINT_PARAMETER, nullptr, nullptr, nullptr,
244 POINT_PARAMETER, nullptr, BLEND_MODE_COLOR);
245 OH_Drawing_CanvasDrawVertices(canvas_, VERTEX_MODE_TRIANGLES, POINT_PARAMETER, points_vertices, texs_vertices,
246 colors, POINT_PARAMETER, indices, BLEND_MODE_COLOR);