Friz64
Friz64
Oh wow, the libdecor demo application also shows this laggy resize behavior. And indeed, disabling libdecor makes this problem completely disappear. https://gitlab.freedesktop.org/libdecor/libdecor/-/issues/37 I wonder though, Blender also uses libdecor and...
It still behaves the same way, but instead of my desktop crashing, the GLFW window now just disappears and the application freezes.
Trying to get back into working on this. Sorry for the silence. Life is hard. > I wonder if this crate should be renamed to `parser` or if you intend...
The next layer on top of this should take care of all remaining parsing. For this, I was reading back on the conversation in #662, and the conclusion we seemingly...
> It doesn't try to process the XML in any way at all, even for simple things such as parsing a number. This is not really true anymore with https://github.com/Friz64/ash/pull/1....
I've added support for the `tracing` crate. Here's a snip from the output when running via `RUST_LOG=trace`: ``` ... 2024-03-13T21:00:30.028385Z TRACE xml{path=generator/Vulkan-Headers/registry/vk.xml}:type{node=""}: analysis::xml: encountered node 2024-03-13T21:00:30.028388Z TRACE xml{path=generator/Vulkan-Headers/registry/vk.xml}:type{node=""}: analysis::xml: encountered...
Or, even better: Only store extension function pointers in an Option that are not guaranteed to succeed loading (read: that have special requirements). So for VK_KHR_swapchain, that would look like...
> Does the registry have enough information to do this easily? Yes, this should be easy to do. The XML literally looks like this: ```xml ``` There's just one thing...
What happens here is that wgpu tries to initialize the Vulkan backend but fails because we enable validation layers in dev/debug mode, which are not installed on your system. If...
Good thought, but all the examples got combined into one binary some time ago, and the specific example is now specified by a command line argument. Also happens with other...