For what purposes we are using Model View Projection Matrix? Why do shaders require Model View Projection Matrix?

link|improve this question

Just check out this link: songho.ca/opengl/gl_transform.html – Blackberry Feb 27 at 11:13
feedback

1 Answer

up vote 19 down vote accepted

The model, view and projection matrices are three separate matrices. Model maps from an object's local coordinate space into world space, view from world space to camera space, projection from camera to screen.

If you compose all three, you can use the one result to map all the way from object space to screen space, making you able to work out what you need to pass on to the next stage of a programmable pipeline from the incoming vertex positions.

In the fixed functionality pipelines of old, you'd apply model and view together, then work out lighting using another result derived from them (with some fixes so that e.g. normals are still unit length even if you've applied some scaling to the object), then apply projection. You can see that reflected in OpenGL, which never separates the model and view matrices — keeping them as a single modelview matrix stack. You therefore also sometimes see that reflected in shaders.

So: the composed model view projection matrix is often used by shaders to map from the vertices you loaded for each model to the screen. It's not required, there are lots of ways of achieving the same thing, it's just usual because it allows all possible linear transforms. Because of that, a lesser composed version of it was also the norm in ye olde fixed pipeline world.

link|improve this answer
so for several objects (meshes) we need several modelView matrixes, needn't we? – Yuriy Vikulov Apr 6 '11 at 1:53
1  
Assuming they may move independently or have been positioned separately then yes. So that's far and away the most common way to proceed — pass modelView or projectionModelView as a uniform to the shader program, having set it up for the current model on the CPU. – Tommy Apr 6 '11 at 10:50
thanks a lot, a lot of things are clearer for me now – Yuriy Vikulov Apr 7 '11 at 2:24
feedback

Your Answer

 
or
required, but never shown

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