-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
wgpu upgraded to 0.15. demo working on linux #2629
Conversation
Thanks! Let's see if we can resolve some of these duplicated crates that |
You may want to merge in The rest should be fixed by |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks good to me! Thank you for updating it so quickly!
let instance = wgpu::Instance::new(configuration.backends); | ||
let instance = wgpu::Instance::new(wgpu::InstanceDescriptor { | ||
backends: configuration.backends, | ||
dx12_shader_compiler: Default::default(), // |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
an attempt at commenting was made, but ultimately failed? :)
confirmed web & desktop working with wgpu and passing color tests 👍 |
demo tested on linux.
surface creation is now fallible. that's the only noteworthy change in wgpu.