Jonathan Johnson
Jonathan Johnson
As per investigations in a conversation on Discord, the target card is an Nvidia 840M. In my searching, I found gpuweb/gpuweb#1069, which as of the time of writing this comment...
@alexniver, are you able to reproduce this problem using wgpu's examples? If so, reporting this to wgpu would be helpful. Since ModProg's original issue was relating to Windows' support for...
> > it seems like a separate issue for wgpu's maintainers to investigate would be helpful. > > Especially because I never created mine 😅 I'm so confused -- the...
@RoxasShadow If you're not opposed having this built-in, I'm happy to add this -- including using a feature flag so that it can be turned on/off. I started using Failure...
I have, but I don't like the implementations that force the users into a specific implementation based on feature flags. That causes potential compatibility issues between multiple crates that maybe...
Believe it or not, there are people who do want this in no_std environments (#1). It was literally the first requested feature. Regardless, I think the approach I outlined in...
So I actually wasn't sure if I was going to go as far as serializing into Rust structures with this crate. I know I can optionally add `serde` and implement...
Initially, I plan on the same approach as functions, I think: modules will be stored in a list and their index is what is used to refer to a function...
That's very true, and maybe changes how I would implement this. Perhaps closures should be more well defined than just being a jumped-to-instruction in the `Vec`. I hadn't thought as...
This is all great stuff. I definitely hadn't finished thinking through the edge cases. One thing that I realized too is that some of these variable-sized things are things that...