···17401740 */
17411741DECLSPEC void SDLCALL GPU_Polygon(GPU_Target* target, unsigned int num_vertices, float* vertices, SDL_Color color);
1742174217431743+/*! Renders a colored polygon outline, optionally open or closed.
17441744+ * \param target The destination render target
17451745+ * \param num_vertices Number of vertices (x and y pairs)
17461746+ * \param vertices An array of vertex positions stored as interlaced x and y coords, e.g. {x1, y1, x2, y2, ...}
17471747+ * \param color The color of the shape to render
17481748+ * \param open Skip last segment and draw an open polygon
17491749+ */
17501750+DECLSPEC void SDLCALL GPU_Polygon2(GPU_Target* target, unsigned int num_vertices, float* vertices, SDL_Color color, GPU_bool open);
17511751+17431752/*! Renders a colored filled polygon. The vertices are expected to define a convex polygon.
17441753 * \param target The destination render target
17451754 * \param num_vertices Number of vertices (x and y pairs)