🎉 Celebrating 25 Years of GameDev.net! 🎉

Not many can claim 25 years on the Internet! Join us in celebrating this milestone. Learn more about our history, and thank you for being a part of our community!

Efficiency of Quadric Functions in OpenGL

Started by
0 comments, last by drstrangeluv 24 years, 6 months ago
I was wondering how efficient are the quadric functions built into OpenGL (gluSphere, gluCylinder, etc.) and should I be using them to draw primitives for a game?
Advertisement
I think that they are good for tutorials or simple applications. But for games would I prefere creating your own objects with the glVertex or a similar commmand.
-This gives you control over every vertex of your world and that can be usefull for animation, texture mapping, texture animation and special effects.
-You can then create quite simple code to save and load the position,color and texture coördinaat of every vertex in or from a file.
-You are not forced to use the standart forms and you can create every form you can imagine.

This topic is closed to new replies.

Advertisement