Offscreen Drawing

Monkey Forums/Monkey Programming/Offscreen Drawing

Wagenheimer(Posted 2011) [#1]
How does monkey handle Offscreen drawing?

Should I avoid drawing things offscreen or monkey does handle this to me?


MikeHart(Posted 2011) [#2]
Monkey does not cull offscreen drawing. You have to do it yourself


Indiepath(Posted 2011) [#3]
I thought the scissor rect handled it


DGuy(Posted 2011) [#4]
Opengl uses the scissor rect to clip geometry passed into it, but for efficientcy sake, you should try to pass in only geometry that will get rendered.