The function gluPerspective() can be used to set near Z and far Z clipping planes.
I want to draw a scene clipped at a certain far Z plane, and draw another scene beyond this Z plane. Is it possible to do this clipping twice per frame?
|
|
|
|
|
|
|
There's no reason you shouldn't be able to do this. Simply setup the first perspective, draw the first scene and then setup the second perspective and draw the seconds scene, all within the drawing of the same frame. |
||
|
|
|
|
You might need to do a draw the farthest scene first and do a |
||
|
|
|
|
A possibility is to assign different depth ranges for the scenes. Some pseudo code would be :
You have to setup your projection matrices to perform the proper clipping for the near / far scenes. The depth ranges assignment is needed to prevent the depth buffer to 'merge' both renderings. |
||
|
|