Advertisement

Split Screen

Started by April 27, 2001 07:47 AM
3 comments, last by Ernest 23 years, 9 months ago
What is the simpliest and easiest way to create split-screen? I''ve tried scissor testing, but I couldn''t get it to work properly. Any advice?
i just set the viewport to new values. that''s all.
Advertisement
That would have to scissor testing. See nehe tutorial, um, 23 I think. The one with the extentions test.

-Alex
Alex BroadwinA-Tronic Software & Design-----"if you fail in life, you were destined to fail. If you suceed in life, call me.""The answer is out there.""Please help, I'm using Windows!"
I use split screen in my game, and I dont use scissor testing at all.If your screen is 800*600, just do:
glViewport(0,0,800,300);
DrawStuffForTopView();
glViewport(0,300,800,300);
DrawStuffForBottomView();

Is that simple and easy enough?
Yes, thank you!

This topic is closed to new replies.

Advertisement