SMG

Results 245 comments of SMG

I would double check the steps on the readme to make sure you have the plugin installed correctly. If you're still having issues after, I'm not sure if I can...

What version of the application did you download like "windows_x64" or "macos"? What file are you trying to extract?

This appears to be fixed by #379

From the wgpu docs: "Each stage can only be served by at most one range. One range can serve multiple stages however." The pipeline creation and render pass set methods...

I used to have something similar in one of my WGPU projects. You can simplify that code by taking the struct instead of the fields and making the function generic....

> To make it even easier, would it make sense to implement a `BindGroup0::from_data()` method relying on [`encase`](https://crates.io/crates/encase) to create the bind group directly from the uniform data: This would...

> But how does it work if there is no `buffer.set_offset(device.limits().min_uniform_buffer_offset_alignment as u64);`? This is the alignment for offsets into the buffer. In my application I use a storage buffer...

> What if you have more than 1 struct? How is it guaranteed they are written in the right order in the uniform buffer? I think I may have misunderstood...

> IDK. I am just starting with the WGPU/WGSL API. What's the point of `@group(n)` otherwise? This was one of the more confusing concepts to learn in WGPU and part...

Interesting find. Thanks. The long term plan is to move the annotation and analysis code into a separate library (#49). The library can support all the current annotation options as...