Nia

Results 47 comments of Nia

Having the exact same issue, also in Bevy. Here's my log with the aforementioned env: [log.txt](https://github.com/gfx-rs/wgpu/files/7994274/log.txt)

The error given was `thread 'main' panicked at 'Error in Surface::configure: requested format Bgra8UnormSrgb is not in list of supported formats: [Bgra8Unorm]'`. Seems similar to the OP, odd that it...

Hm. Okay, I'll open a separate issue. Sorry for the inconvenience.

I benchmarked every function with `#[inline]` vs. as-is, and there are a few considerable improvements. On my machine (x86_64 Arch Linux, Ryzen 7 5800H) I got these significant results -...

+1, willing to attempt an implementation if this is given the go-ahead

Seems like testcase 1 currently passes but I didn't dig too deep to see why/since when; maybe this issue is worth updating for anyone coming to work on it in...

Considering changing removal of functions to be behind a feature gate i.e. `static-obj-memory` so that platforms where the overhead is "tolerated" don't need to worry about all of this and...

Alright. I'll open an issue for it when I get back to working on this

This is "intended" and fixable but needs documentation. The issue is that theoretically `Box::new(x: T)` requires that `T` lives arbitrarily long, which is fine to say for structs etc. but...