It is possible to draw a quickly multidimensional vertex array?
For example sf::Vertex vertex[800][600];
I know only this way, but isn't too fast...
for(i=0; i<800; i++)
{
window.draw(vertex[i], 600, sf::Points);
}
Its like call .draw 800 times...
Thanks
(and sorry for bad english)