On Mon, May 25, 2009 at 1:34 PM, mclovin <[email protected]> wrote: > > I wanna increase the performance of my app so I thought I would make a > batch. so I have 3 seperate GL_LINE_SRTIP objects that need to be > processed, however, when I put them in the same batch, they all > connect together as it processes them as one singular object. I was > just wondering if there was anyway to put them in the same batch but > prevent this from happening.
Unless your graphics card happens to support one of the primitive restart extensions, then no. However, you most likely won't see any performance increase from strips - try using indexed lines instead. -- Tristam MacDonald http://swiftcoder.wordpress.com/ --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "pyglet-users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/pyglet-users?hl=en -~----------~----~----~----~------~----~------~--~---
