I one of the issues I have with pyglets VBOs is that their buildup performance is abysmal. That is because it copies the data as iterables out of what you pass in. You could get great buildup performance benefits by testing if the data that's passed in is conforming to the expected ctypes type you're coping it into, and doing a memmove instead of passing an iterable to a ctypes constructor.
-- 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.
