Maybe I'm missing something obvious here, but is there no way to translate and/or rotate a vertexArray?
Regenerating the entire geometry each frame is too slow already. Essentially I need something like:
glTranslatef(x,y);
glRotatef(angle);
window.draw(vertexArray);
Would mixing opengl and sfml in that way cause unexpected effects with regards to their transforms fighting?