what is clipping space.

Started by
0 comments, last by Armadon 18 years, 3 months ago
after view projection transmation,do the mesh go to the clipping space?
Advertisement
The pipeline basically works like this.
Primitive/Vertex data gets sent to the Vertex Pipeline.
Vertex Pipeline
--> World Space
--> View Space
--> Lighting (Lighting gets applied)
--> Projection Space (View frustum gets converted to a cubiod)
Clipping/Rasterization
--> Clipping /Backface culling and other steps

So from the Vertex Processing stage to the Clipping stage the data is clipped using clipping planes and other clipping techniques.

PS: Short answer
Quote:
after view projection transmation,do the mesh go to the clipping space?

The Vertex Data of the mesh gets sent to the Geometry processing stage.

I hope this helps.
Take care.

This topic is closed to new replies.

Advertisement