Daniel Ludwig
Daniel Ludwig
I learned about [CMake Rust Language Support](https://github.com/Devolutions/CMakeRust) recently, and tried to wrap a simple-to-use module [fips-rust](https://github.com/code-disaster/fips-rust) around it. Right now, it only allows to add a Cargo project as a...
Remotely related corner case: transitive dependencies. I just imported `fips-stb`. It has a dependency to `fips-glfw`, which is only needed to build the examples. Still, in "library mode", it also...
Oh nvm, I've just seen `no_auto_import: true` in sokol-samples. Maybe this could be useful as a per-import flag.
Some more ideas to throw in: - A way to supersede a module for a project, e.g. to allow cloning a dependency of a fips module from a different Git...
I did a build config for SDL in a different build system once. My goal was to do a "minimal" compile, as a static library, for Windows, Linux, OS X...
I have some experimental build running, because I've seen your module and want to learn more about flatbuffers. So far I changed CMakeLists.txt to build flatc as a fips project...
I don't agree on the performance topic. PNG encoding/decoding speed has been *the* bottleneck for building *and* loading texture atlasses with Pathway. I switched to a custom binary format which...
FPNG looks promising, but has one major restriction: their decoder only works on png files encoded by FPNG.
> perhaps LWJGL3 could use the libraries from the JAR instead of first copying them (what is this reason for this - faster access speeds?) Because this is not how...
I don't know why it would crash inside the `isP2PPacketAvailable()` function, but I agree that the Java API could do a better job here. I believe there's also a bug...