Understanding how to go from a scene to what's actually rendered to screen in OpenGL?

Posted by Pris on Game Development See other posts from Game Development or by Pris
Published on 2012-06-19T17:09:31Z Indexed on 2012/06/19 21:25 UTC
Read the original article Hit count: 145

Filed under:
|
|

I want something that explains step by step how, after setting up a simple scene I can go from that 'world' space, to what's finally rendered on my screen (ie, actually implement something). I need the resource to clearly show how to derive and set up both orthographic and perspective projection matrices... basically I want to thoroughly understand what's going on behind the scenes and not plug in random things without knowing what they do.

I've found lots of half explanations, presentation slides, walls of text, etc that aren't really doing much for me. I have a basic understanding of linear algebra/matrix transforms, and a rough idea of what's going on when you go from model space -> screen, but not enough to actually implement it in code.

© Game Development or respective owner

Related posts about camera

Related posts about opengl-es2