The documentation for SFML states that you can combine primitives to create vertex arrays. I think what they are referring to is the fact that multiple Triangles
can be grouped into a TriangleFan
or TriangleStrip
.
I'm wondering whether there is a way to combine two existing primitive types in a single vertex array. For example, could I define a bunch of vertices as a TriangleFan
and then switch over to a LineStrip
? Or would this require two separate arrays?