This is just out of mere interest, but is there a limit to the amount of vertecies GL_VERTEX_ARRAY will 'hold' and render through something like drawArrays()? Or could I theoretically pass through a few million vertexes and still be able to call drawArrays()?
feedback
|
|
Since OpenGL-1.2 a sort of limitation applies when using
But that's more of a recommendation, that a hard constraint. Other than that, the true limit is the amount of memory installed, and what can be addressed by the chosen type for the index element array However the limits for | |||||||||
feedback
|
|
There is definitely a limit, but as far as I know it is just based on available memory, so you may well be able to have a few million vertices. | |||
|
feedback
|