0
votes
1answer
19 views
How to keep pyglet from clearing the screen ?
I want to draw a scene and sequentially add lines to it. But pyglet keeps updating without control :( , so all I get is blinks
from pyglet.gl import *
window=pyglet.window.Window …
0
votes
1answer
154 views
HowTo put region of Pyglet image into PIL Image?
My app reads frames from video (using pyglet), extracts a 'strip' (i.e. region - full width by 1 to 6 video lines), then pastes each strip (appends it) into an image that can later …
1
vote
3answers
188 views
OpenGL Picking with Pyglet
I'm trying to implement picking using Pyglet's OpenGL wrapper, but I'm having trouble converting a C tutorial to Python. Specifically the part below.
#define BUFSIZE 512
GLuint s …
2
votes
1answer
85 views
detecting two simultaneous keys in pyglet (python)
Hi there...
I wanted to know how to detect when two keys are simultaneously pressed using pyglet.
I currently have
def on_text_motion(self, motion):
(dx,dy) = ARROW_KEY_TO_ …
1
vote
2answers
61 views
Creating a new input event dispatcher in Pyglet (infra red input)
I recently asked this question in the pyglet-users group, but got response, so I'm trying here instead.
I would like to extend Pyglet to be able to use an infra red input device s …
2
votes
2answers
395 views
Start with pyglet or pygame?
Hey,
I would like to know what is the best to start with, pyglet or pygame? Which one is faster and which one is more active?
I would also like to know if pyglet will get python …
4
votes
2answers
196 views
Programmatic control of python optimization ?
I've been playing with pyglet. It's very nice. However, if I run my code, which is in an executable file (call it game.py) prefixed with the usual
#!/usr/bin/env python
by doi …
2
votes
3answers
246 views
Python Video Framework
Hi,
I'm looking for a Python framework that will enable me to play video as well as draw on that video (for labeling purposes).
I've tried Pyglet, but this doesn't seem to work …
1
vote
6answers
288 views
How to do a non-blocking URL fetch in Python
I am writing a GUI app in Pyglet that has to display tens to hundreds of thumbnails from the Internet. Right now, I am using urllib.urlretrieve to grab them, but this blocks each t …
1
vote
2answers
181 views
How to convert a Pyglet image to a PIL image?
i want to convert a Pyglet.AbstractImage object to an PIL image for further manipulation
here are my codes
from pyglet import image
from PIL import Image
pic = image.load('pic.jpg …
1
vote
2answers
293 views
why might my pyglet vertex lists and batches be very slow on Windows?
I'm writing opengl code in python using the library pyglet. When I draw to the screen using pyglet.graphics.vertex_list or pyglet.graphics.batch objects, they are very slow (~0.1 f …
0
votes
4answers
896 views
Get Data from OpenGL glReadPixels(using Pyglet)
I'm using Pyglet(and OpenGL) in Python on an application, I'm trying to use glReadPixels to get the RGBA values for a set of pixels. It's my understanding that OpenGL returns the …
9
votes
3answers
2k views
Differences between Python game libraries Pygame and Pyglet?
I've had some experience with Pygame, but there seems to be a lot of buzz around Pyglet these days.
How do these two libraries compare? What would be the advantage of using one ov …
7
votes
5answers
748 views
PyOpenGl or pyglet?
I am looking to do some tinkering with openGL and Python and haven't been able to find good reasons for using PyOpenGl versus pyglet
Which would you recommend and why?
0
votes
2answers
1k views
opengl set texture color with vertex color
Because I need to display a huge number of labels that move independently, I need to render a label in pyglet to a texture (otherwise updating the vertex list for each glyph is too …
