Imbris
Imbris
> ``` > stderr: > error: line 127: Case construct that targets '74[%74]' has invalid branch to block '55[%55]' (not another case construct, corresponding merge, outer loop merge or outer...
It seems to be triggered by the cloud providers integration. @thinkORo I was able to at least temporarily work around it by commenting out the lines noted in https://github.com/nextcloud/desktop/issues/1982#issuecomment-1805462085 I...
> I think we should treat the `Block` and `BufferBlock` decorations the same but we are currently using the presence of `BufferBlock` to indicate a storage buffer? I don't think...
For me the time jumps up from ~36 seconds before https://github.com/gfx-rs/wgpu/commit/192a2fe16c001ecf543f1973713dde96cdd121c9 to ~450 seconds after which roughly matches the multiplier of going from 1 to 12 (36 * 12 =...
On nightly the effect of https://github.com/gfx-rs/wgpu/commit/192a2fe16c001ecf543f1973713dde96cdd121c9 seems to be resolved as mentioned above. However, `cargo doc -p wgpu-core --no-deps` times go from 10-15 seconds to 80 seconds on efb35d4fa1059a514942d375fa5239c6d27cf35a. Not...
A switch with just a default case isn't handled well in FXC, see https://github.com/gfx-rs/wgpu/issues/4514 So it would probably need to be written as a `do {} while(false)`. I don't know...
Another variant of this. WGSL: ```wgsl var i = 0; loop { if i > 4 { break; } i = i + 1; switch 0 { case 0, default...
> Yeah, that requirement was backed out. Afaik, we just need to pipe the full list of vertex outputs into the fragment input in Naga so Naga can generate the...
It looks like dawn implemented this by removing the outputs on the vertex shader side .
I'm somewhat consistently seeing this when running this test on a windows laptop: ``` wgpu-test::wgpu-test [Executed] [Dx12/Microsoft Basic Render Driver/2] wgpu_test::clear_texture::clear_texture_uncompressed_gles ``` ``` [2024-04-15T00:39:18Z ERROR wgpu_hal::auxil::dxgi::exception] ID3D12CommandAllocator::Reset: A command allocator...