drawing in orho and persp projection in same wivn

Is is possible to draw some objects in perspective mode and some objects with orthographic mde in the same opengl window?

-Prasad

yes, but do not expect z-buffer to work properly.

-setup projection matrix to perspective
-render perspective gfx
-setup projection matrix to ortho
-render ortho gfx

yup…it worked for me…thanks a lot :slight_smile:

prasad