Eddy Jansson

Results 11 comments of Eddy Jansson

The suggestion that you should retry for more than 8 seconds after a modeset just seems baffling. How is that an OK user experience? "The spec allows it and gosh...

I'm not Simon, but I'd be more compelled by seeing at least some benchmark first. It's very hard to look at code and come up with micro-optimization that actually turn...

This is most likely an issue with your environment/installation. The function [should be overloaded](https://en.cppreference.com/w/cpp/string/basic_string/stoul) so both `std::string` and `std::wstring` should work, and in fact, your example code compiles without error...

> (@kisak-valve said): this reads like the current intended behavior of the Steam client. These shader pre-cache updates were happening before, but with less visibility. Is it intended that the...

Same here. My guess it's that libfreetype-dev is too old for the new SDF font rendering stuff. My Mint install comes with v2.11, and the new documented minimum is 2.13....

No, there are no updated packages. My dist is built on Ubuntu 22.04 LTS (Jammy), [which comes with freetype 2.11](https://packages.ubuntu.com/jammy/libfreetype-dev), and will only see security updates. Obviously I can build...

I'm strongly in favor of moving up to at least [C99](https://en.wikipedia.org/wiki/C99) for SDL3. Intermingled declarations alone is worth it, plus one-line comments, designated initializers, compound literals, better (variadic) macro support,...

> Does this still happen? I can't reproduce that. Just FYI, at a42b07077f3897a I got this error _before_ I installed `libext2fs-dev` (Debian 12.5 (bookworm)) ``` make clean ./autogen.sh ./configure --disable-documentation...

This is mostly a FYI I guess, but I'm getting this same error on a fully up to date MSYS2 installation: ```bash $ python3 --version Python 3.11.9 $ python3 -m...

I'll just note that this is one of those things that are affected by `-ffast-math`. Specifically `-ffinite-math-only` seems to eliminate the call for GCC and clang at least.