timo-oster

Results 5 comments of timo-oster

Just chiming in here to say that I'm seeing the same problem with `gl_WorldToObjectEXT` and `gl_WorldToObject3x4EXT`. In my particular case, I was able to work around the problem by replacing...

Unfortunately the same problem seems to persist. I add the x86_64/ dir of the Vulkan SDK (the one that contains lib/, bin/, include/ etc.) to `CMAKE_PREFIX_PATH` and it finds the...

I just tried again, and this time it worked. Not sure if the problem was on my end or yours, but it seems to have been resolved.

The `Hash_fn` in `samplers_vk.hpp` calculates a hash based on the raw bytes of the `SamplerState` object and therefore could also suffer from similar problems.

Here's a hash function that avoids the problem (valgrind errors are gone for me if I use it): ```cpp template static std::size_t combineHash(std::size_t seed, First const& first, Args const&... rest)...