vote up 5 vote down star
3

Since OpenGL is a state machine, I am constantly glEnable() and glDisable()-ing things in my program. There are a select few calls that I make only at the beginning (such as glClearColor) but most others I flip on and off (like lighting, depending on if I'm rendering a model or 3d text or the gui).

How do you keep track of what state things in? Do you constantly set/reset these things at the top of each function? Isn't that a lot of unnecessary overhead?

For example, when I write a new function, sometimes I know what state things will be in when the function is called, and I leave out glEnable or glDisable or other related state-switching calls at the top of the function. Other times, I'm just writing the function in advance and I add in these sorts of things. So my functions end up being very messy, some of them modifying OpenGL state and others just making assumptions (that are later broken, and then I have to go back and figure out why something turned yellow or why another thing is upside down, etc.).

How do you keep track of OpenGL across functions in an object oriented environment?


Also related to this question, is how to know when to use push and pop, and when to just set the value.

For example, let's say you have a program that draws some 3D stuff, then draws some 2D stuff. Obviously the projection matrix is different in each case. So do you:

  1. set up a 3d projection matrix, draw 3D, set up a 2d projection matrix, draw 2d, loop
  2. set up a 3d projection matrix at the program; then draw 3d, push matrix, draw 2d, pop matrix, loop

And why?

flag

4 Answers

vote up 1 vote down check

Great question. Think about how textures work. There are an insane amount of textures for OpenGL to switch between, and you need to enable/disable texturing after every object is drawn. You generally try to optimize this by drawing all objects with the same texture at once, but there's still a remarkable amount of state-switching that goes on. Because of this fact, I do my best to draw everything with the same state at once, but I'm not sure if it's terribly important to optimize it the way you're thinking.

As for pushing and popping between 3D and 2D projection modes, pushing and popping is intended to be used for hierarchical modeling. If you need your 2D projection to be at a location relative to a 3D object, by all means, push the matrix and switch to 2D projection mode, then pop when you're done. However, if you're writing a 2D GUI overlay that has a constant location on the screen, I see no reason why pushing and popping is important.

link|flag
Well I'm not sure your first paragraph really addresses the issue, though I'm sure it's largely because I didn't explain myself well enough. I need to come back to this question when I have a clearer idea of exactly what I'm trying to ask. Thanks for the insight on push/pop though, I like that explanation. – Ricket Aug 7 at 12:51
vote up 1 vote down

You might be interested to read more about scene graph libraries. They are meant to manage your graphics from a higher level. They don't handle everything well, but they excel at organizing your geometry for optimized rendering. They can additionally be used for sorting your scenes based on OpenGL state, although many do not do this. By sorting on state, you can render your geometry in an order that results in the fewer state transitions. Here's a nice overview about scene graph libraries:

http://www.realityprime.com/articles/scenegraphs-past-present-and-future

link|flag
Yes, I'm quite familiar with them. I'm using Java, so there's Xith3D and jMonkeyEngine. The problem was that I obsessed over these engines and didn't actually make anything worthwhile. Now that I've been just writing pure OpenGL, I'm actually getting stuff done. Thanks though. – Ricket Aug 7 at 12:49
It seems like you're re-inventing the wheel a bit. How much of what you have accomplished was already managed by a scene graph library? – Eric Aug 7 at 13:51
.ms3d file loader with bounding box computation. That's probably about it. What I can't do with a scene graph library, at least easily, is my special heightmap (with planned dynamic loading) and my custom GUI features. So yeah it's a tradeoff, but it's easier for me to write the things a scene graph library can do and then do other things that it can't, rather than use one and try to figure out workarounds and hacks just to be able to draw 2d shapes on the screen or something. – Ricket Aug 8 at 12:57
vote up 1 vote down

I think the simplest approach would be to write your own render class, wrapping all OpenGL state manipulation functions you are using and do book keeping of the states you set. You need to take into account that changing screen resolution or toggling fullscreen mode will invalidate your current OpenGL render context's states and data, which means that after such an event you will have to set all states, re-upload all textures and shader programs, etc.

link|flag
vote up 0 vote down

To answer your first question "How do you keep track of what state things in?", you can find the current state of the state machine by using glGet. With glGet you can test your assumptions at the top of all your functions and adjust the state accordingly. This will still make your functions ugly but at least they won't break at a later time.

The next step of course is scene graph libraries like Eric mentioned. Scene graphs generally either optimize for nearness in geometry or nearness in state. The geometry optimizers render things close together in space and the state optimizers render things close together in state to minimize the state changes.

EDIT: In response to the comments you are right, glGet is a terrible idea. An alternative is to create your own structure or class that has a bunch of bools to keep track of state (e.g. Lighting is enabled). Then replace all your glEnable calls with functions you wrote that check your structure and call glEnable if it is necessary and make necessary adjustments to your structure. Something like:

class OpenGLState  {
  bool _LightingEnabled;
  bool _DepthTestEnabled;
  . 
  .
  .

  public void EnableLighting {
    if(!_LightingEnabled)  {
      _LightingEnabled = true;
      glEnable(GL_LIGHTING);
  }
}

This should prevent your functions from making assumptions and breaking later.

link|flag
Not only will using glGet make your functions ugly but it'll make them slow too as there's an overhead associated with calling glGet. – Troubadour Aug 11 at 20:31
Thanks Troubadour, I was about to ask that. I haven't seen any experiments but I would guess that calling glGet and then calling the function would be worse than just calling the function regardless of the prior state. I would think it'd be a pretty big deal, because glGet involves at least grabbing stuff from the GPU memory (GDDR?) and bringing it to RAM. – Ricket Aug 12 at 13:03
glGet should probably be reserved for times when I need to get the state in order to make a decision, and when the state can't be known; obviously I'm in complete control of OpenGL, so I can know in advance what things are enabled or disabled (because I was the one to enable or disable them), so it really just comes down to organization of my enable/disable calls... Which is what this question is about. – Ricket Aug 12 at 13:04
Well thanks for the edit but again, I'm in complete control of OpenGL. Your answer would be great if I was using, for example, a OpenGL library and calling functions which modify OpenGL state in ways unknown to me. But I can know when I enable or disable lighting, because I did it. It's like the difference between compile time and run time; the only reason that conditionals and booleans would be necessary is if the code was organized poorly, to leave OpenGL in a disorderly state. Your snippet is more of a hack, bad code added on top of bad code. I don't mean any insult. It's just bad practice. – Ricket Aug 20 at 20:10

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.