Jan Kuhlmann

Results 39 comments of Jan Kuhlmann

Which Pixel representation do you prefer? I am personally a fan of the Pixel_A struct with the color palette, as those will be very flexible and can easily fit all...

> What did you mean by "custom color palette"? To explain, it is unlikely that we will have a large number of different colors for a single graph, even when...

Going through the options, there is SDL_DUMMYAUDIO, enabled by default when the audio subsystem is requested. https://github.com/libsdl-org/SDL/blob/679dd4b18127cdde882c0c7967ca18cb25df0366/CMakeLists.txt#L1178-L1193 It is also forcefully enabled in case there is no audio implementation present...

Thanks for the explanation @slouken ! My original goal was to reduce the compile times for SDL by selectively disabling certain subsystems during development, e.g. when using it only for...

@asuessenbach could you give the CI a little shove when you get the time? I can't seem to trigger it myself.

To run workflows on private machines, you can probably make good use of something like [act](https://github.com/nektos/act) to run workflows in docker containers. They should even be CUDA-capable, but I haven't...

I don't have any Android experience myself, but to use all the Vulkan headers provided here, you have two options: 1. Use `add_subdirectory("path/to/vulkan/submodule")`, which allows you to link against the...

First step will be to get modules to compile, which should be doable with MSVC and Clang. I will work on that. I've figured out how to get all tests...

In my case, Clang succeeds compilation and GCC fails in both cases. Seems like theres some c++20 module implementation differences here still. The problem for me seems to stem from...

@SquareMan could you check if this issue still exists with the newest version of the headers? We made some changes to the export by now, so I can at this...