Einar Forselv
Einar Forselv
Works fine for me in Catalina. The only problem is memory leaking due to the event cache filling up.
Early 2013 MacBook (Intel)
This might actually not be a terribly difficult issue to fix. Debugging what is happening with the `ObjCInstance` instances is a good start. The `_cached_objects ` filling up is probably...
What kind of support are we talking about here?
Still don't understand what you are looking for here. I know what Vulkan is. What do you want pyglet to do?
It does sounds like a pyglet 3.x thing like already stated. I highly doubt the OpenGL api will disapper completely from MacOS any time soon, but it will surely be...
I see the same in master branch. A lot of objects accumulating in `ObjCInstance._cached_objects`. Changing to WeakValueDictionary keeps it at ~17-18 elements constantly and the leaks are reduced quite a...
`window.get_pixel_ratio()` should help you in this case. The viewport size should be multiplied by this factor. **pyglet 2**: I wonder if this could be solved internally in pyglet so hidpi...
> I cannot resize/move/close the window when other python codes are running. This really depends on the details. The window main loop needs to keep running or the window will...
A very ugly script starting a `Process`. We use a `Queue` to read data from the process itself. Might be overkill attempting to get data from the queue every frame....