On Feb 10, 9:18 am, Florian Bösch <[email protected]> wrote: > Added texture min/mag filter with > http://hg.codeflow.org/pyglet/rev/ee512d7da604 > addresses http://code.google.com/p/pyglet/issues/detail?id=463 > > Feel free to pull from http://hg.codeflow.org/pyglet
I just looked at your patch and I think these two lines: http://hg.codeflow.org/pyglet/rev/ee512d7da604#l1.8 http://hg.codeflow.org/pyglet/rev/ee512d7da604#l1.9 should be: glTexParameteri(texture.target, GL_TEXTURE_MIN_FILTER, texture.min_filter) glTexParameteri(texture.target, GL_TEXTURE_MAG_FILTER, texture.mag_filter) (so "texture" instead "self" for the filters) Apart from that I think I can pull your changes (texture-filter, set_mouse_position) into pyglet if no one objects. -- 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.
