David Reid

Results 303 comments of David Reid

By the way, I don't want to prematurely blame this on a compiler bug, but if it comes to it, I can make it so the 8- and 16-bit use...

When `C89ATOMIC_LEGACY_GCC` is defined it forces the compiler to use the `__sync*` path. If GCC 14 is passing, but 4.2 is failing, it *feels* like it might be a compiler...

Unfortunately I was unable to compile GCC 4.2 on my VM. I've instead decided to just not support lock-free 8-bit and 16-bit atomics for PowerPC with versions of GCC prior...

Yes the latest version in the master branch should use a spinlock for 8-bit and 16-bit atomics which I think should make the tests pass. It's less efficient, but I'm...

My mistake. You able to try that again?

Thanks for verifying that. I was unaware of the `-Wpendantic` thing. I just tested with GCC 2.7 and indeed it doesn't work there either. I've changed it to `-pedantic` in...

Will go ahead and close this one now. Thanks for testing these changes.

miniaudio developer here. Not sure how yourself or SFML is using the resampler, but in case you were unaware, the linear resampler does have some options for doing filtering to...

I'm actually not getting that warning. I compile with `-Wall -Wextra -Wpedantic`, and I've tried with `-Wstringop-overflow=1/2/3/4`. Is there anything else I need to do enable that warning? But looking...

So I'm still unable to replicate this even with `-O3 -Wall`. Not sure if I'm doing something wrong there, but in any case I've attempted to wrap this around a...