I'm drawing a VBO in GL_TRIANGLES mode, and I just draw solid triangles.
Right now I have to create a 4-component color for every single vertex. For each triangle that means 3 colors, which results in a massive amount of 12 values. But all I need is a solid color for the triangle.
Is there a way of "compressing" this amount of data so that -at least in memory- there are just 4 values stored to define the color of a triangle?