Offscreen Drawing
Monkey Forums/Monkey Programming/Offscreen Drawing| 
 | ||
| How does monkey handle Offscreen drawing? Should I avoid drawing things offscreen or monkey does handle this to me? | 
| 
 | ||
| Monkey does not cull offscreen drawing. You have to do it yourself | 
| 
 | ||
| I thought the scissor rect handled it | 
| 
 | ||
| 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. |