25#ifndef SFML_PRIMITIVETYPE_HPP
26#define SFML_PRIMITIVETYPE_HPP
PrimitiveType
Types of primitives that a sf::VertexArray can render.
@ TriangleStrip
List of connected triangles, a point uses the two previous points to form a triangle.
@ LineStrip
List of connected lines, a point uses the previous point to form a line.
@ Lines
List of individual lines.
@ TriangleFan
List of connected triangles, a point uses the common center and the previous point to form a triangle...
@ Quads
List of individual quads (deprecated, don't work with OpenGL ES)
@ Triangles
List of individual triangles.
@ Points
List of individual points.