Say there are many different meshes with transformations that changes more or less each frame, what would in general be the faster of these drawing methods:
- For each frame fill a big vertex buffer with the transformed vertices of the mesh (transformation is done on CPU and vertices copied to the buffer each frame).
- For each object creation insert the non-transformed vertices of the mesh, then when drawing send the transformation of each mesh as a uniform parameter (transformation done on GPU, vertices are copied at mesh creation).
We can assume that all meshes are drawn each frame so not copying vertices for case 1) would not matter.