You could try using blit_into():

tex = pyglet.image.Texture.create(256,256)
image = pyglet.image.load('image1.png')
image2 = pyglet.image.load('image2.png')

tex.blit_into(image,0,0,0)
tex.blit_into(image2,32,32,0)

tex.blit(0,0)


-- 
You received this message because you are subscribed to the Google Groups 
"pyglet-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/pyglet-users.
For more options, visit https://groups.google.com/d/optout.

Reply via email to