Jan Kuhlmann

Results 17 issues of Jan Kuhlmann

Getting OpenVDB to compile on a noetic docker image (ubuntu 20.04) required both the libjemalloc-dev and libtbb-dev packages in addition to the ones listed

The CMake options are currently being described in the [README-cmake.md](https://github.com/libsdl-org/SDL/blob/main/docs/README-cmake.md), which seems to be missing some options that may be of interest to people who use CMake's FetchContent or would...

When using `Vulkan-Hpp` with `VULKAN_HPP_NO_TO_STRING`, the C++20 module breaks due to being unable to find the `to_string` symbol. I therefore just hid it behind an `#ifndef`.

I used the Pixel_B structure from #8 to create a `fragment` struct utilizing unions instead of std::variant, due to the latter being larger in total size (3 vs 8 bytes)....

enhancement

_Disclaimer: I am mostly talking about the drawing of **graphs**, as that is what I focused on for now in #6._ The current drawing method relies on the

enhancement

Adding a bar plot/graph as another type might be quite nice, as its pretty frequently used. As far as I can tell, the infrastructure to build it is already mostly...

enhancement

There is quite a lot of info in the README, especially in the form of somewhat large images. It might be nice to wrap a lot of these in [collapsible...

enhancement
good first issue

Under Windows, we need to export the `defaultDispatchLoaderDynamic` symbol, as simply importing vulkan_hpp will not provide it without including the macro header in every .cppm file that imports vulkan_hpp. I'm...

Here's an example of how `VULKAN_HPP_TESTS_BUILD_ONLY_DYNAMIC` could be replaced by the use of `VULKAN_HPP_DISPATCH_LOADER_DYNAMIC`, meaning I've only touched the testing side of things so far. And looking at this, why...

The two CMake options `VULKAN_HPP_SAMPLES_BUILD_ONLY_DYNAMIC` and `VULKAN_HPP_TESTS_BUILD_ONLY_DYNAMIC` have been around before `VULKAN_HPP_DISPATCH_LOADER_DYNAMIC` was introduced, which should be able to replace both of these. CI currently tests with `*_ONLY_DYNAMIC` so testing...