I’m sure this question has been asked somewhere before, but I can’t seem to get a good answer:
When would you prefer display lists over vertex arrays and vice-versa? What I’ve understood - and this makes sense - is that you’d use vertex arrays when you are dealing with dynamic data, and display lists when you’re dealing with a set of static data.
My next question: Given that, does it make sense to try to display animations (for example, of character models) using vertex arrays or display lists? It seems to me that you’d use vertex arrays, because the actual data that you’re sending to the card varies each and every frame. Has anybody actually used display lists for animation?
God bless,
-Toby