push attribute/pop

Started by
0 comments, last by TomasH 19 years, 8 months ago
If I PushAttrib with several flags inside it, eg: GL_COLOR_BIT | GL_LIGHTING_BIT | etc do I simply do a glPopAttrib after or do I need to do a pop for each item inside the single PushAttrib call ? cheers
Advertisement
One pop for each push, no matter how many attributes you've pushed.
(Or in other words, every glPushAttrib should have one, and only one, glPopAttrib)

EDIT: Oh, and I believe it should be GL_COLOR_BUFFER_BIT, not GL_COLOR BIT ;)

This topic is closed to new replies.

Advertisement