I'm using opengl 3.3 core profile to replace some old fixed function code.
What would be the recommended approach to take when drawing the following set of nine quads in many different rotated configurations?
All quads have the same scale but each of the eight quads surrounding the center quad can have potentially different rotations (though always attached to the center quad by at least one vertex), here are two example configurations:
The surrounding eight quads will all have the same constant color (different to the center quad) and I will want to cull their backfaces.
Should I perhaps create a VBO describing a single unit quad then make nine draw calls, each time uploading a different matrix uniform?
Or alternatively should I create a VBO describing a single unit quad then make a single (instanced) draw call uploading a uniform array of matricies?
Should I create one VBO describing all nine unit quads and update it every frame?
Is there a better approach?