Austin Hurst

Results 135 comments of Austin Hurst

@mseeber No clue if you're still using PySDL2 for anything, but I've created a new API [`sdl2.ext.Renderer`](https://pysdl2.readthedocs.io/en/0.9.13/modules/ext/renderer.html#sdl2.ext.renderer.Renderer) which directly offers the sort of separate "draw to buffer" and "present buffer"...

@zeroxer Sorry for the slow reply, I've been busy over the holiday! Looking at the pysdl2 source the function isn't currently wrapped (nothing from the `SDL_thread.h` header has Python bindings)....

Closing this due to inactivity, but please let me know if you'd like this reopened!

I mean, it's probably a good idea (there are some fairly major new features/functions added to SDL\_image/SDL\_ttf/SDL\_mixer in the latest hg versions since the last release, so they might be...

This looks great! This will be very helpful for newcomers trying to wrap their heads around SDL2_mixer's arcane audio API. Two requests before I merge this: * First, can you...

Hey @mcepl, it's not 100% clear from the build logs since pytest isn't set to report captured `print()` output (a few tests print messages describing feature support in the linked...

@mcepl Thanks, that helps a lot! That tells me Mixer is being built with dynamic support for `libmpg123` as an MP3 decoder backend, but I can't find a reference to...

@mcepl Sorry for the delay, been taking some time off! Can you run the tests locally with `pytest -vl -rxXP sdl2/test/sdlmixer_test.py` and send me the logs? That'll give me a...

@mcepl Looks like some tests are failing in that last log that were working fine in your earlier ones: can you try re-running with the following environment variables set? These...

Ahhh I see, I wrote my patch wrong: apparently `Mix_Init` still indicates that MP3 support is loaded correctly even if the required dynamic library isn't available. I rewrote the "check...