gluNewQuadric(...)

I’ve just finished the NeHe tutorial on quadrics and noticed that the quadric object isn’t deleted, ie gluDeleteQuadric(…) isnt called.

Does it require explicit deletion like a dynamic object or can it be ignored?

Hi !

It’s just a memory area that is allocated so it’s not a big deal, unless you allocate it many times, in that case you must delete it or you will start to eat up memory.

Mikael