Connor Fitzgerald
Connor Fitzgerald
Hello, thank you for your PR against Naga! As part of https://github.com/gfx-rs/wgpu/issues/4231, we have moved development of Naga into the wgpu repository in the Naga subfolder. We have transferred all...
Hello, thank you for your PR against Naga! As part of https://github.com/gfx-rs/wgpu/issues/4231, we have moved development of Naga into the wgpu repository in the Naga subfolder. We have transferred all...
> Can I trigger the CI cycle myself, or does someone else have to do that? No that would require us to do it - however you can enable actions...
> When you reconfigure, every pipeline has to be rebuilt iirc(this is a limitation of vulkan and probably some other backends), Pipelines don't need to be recreated, only the surface...
What is the execution time of your submissions?
Yeah that's a bodge that would work around it, at the expense of your cpu/gpu parallelism.
An interesting thing I found when trying to go from x86 mac to aarch64 mac is that by default, llvm uses libz compression to compress part of the files. This...
So I tried two different permutations: ## Two Reports ``` source
Noting a desire for more customization of the coordinate space here. I am using the blender convention (+X right, +Y forward, +Z up) and had to roll my own look_at....
It wasn't in a public project but I can copy it in here. ```rust fn look_at_blendy(eye: Vec3, target: Vec3, up: Vec3) -> Mat4 { let forward = (target - eye).normalize();...