Display lists, transformations, speed..

Started by
0 comments, last by koom 22 years, 8 months ago
Hello all OpenGL gurus! Im now developing a user interface for one game and I have a small question: When I need to draw a few quads, for example button on chracter in text, will it be faster to use a displaylist (for one textured quad) and set a matrice for it or go straith with glVertex etc and wait whether will OpenGL ommit the transformation stage and gain some speed? And vertex arrays? Too many too stupid questions, thank you for your patience regards Jindrich Kolman
regardsJindrich KolmanLibs
Advertisement
Basically, if you''re doing it more than two or three, you should make a display list. At least, thats my rule. For characters, you should make an array or display lists and then you can do array[ch] to print that char. Make a function that keeps track of a text cursor and prints the characters to the right places.
(http://www.ironfroggy.com/)(http://www.ironfroggy.com/pinch)

This topic is closed to new replies.

Advertisement