-
Notifications
You must be signed in to change notification settings - Fork 184
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Panics on Nvidia + Wayland #145
Comments
I have the same issue and I had the issue with my own code as well. I fixed it by changing texture format: texture_descriptor: TextureDescriptor {
label: None,
size: ext,
dimension: TextureDimension::D2,
// 0.11.0
// format: TextureFormat::Rgba8Unorm,
format: TextureFormat::Rgba8UnormSrgb,
mip_level_count: 1,
sample_count: 1,
usage:
TextureUsages::TEXTURE_BINDING |
TextureUsages::COPY_DST |
TextureUsages::RENDER_ATTACHMENT,
view_formats: &[]
}, |
could you elaborate what you changed and where? Do I need to change the |
This looks like the issue vladbat00/bevy_egui#192 |
When enabling the plugin on a system running Wayland with Nvidia graphics, the application panics:
AdapterInfo { name: "NVIDIA GeForce GTX 970", vendor: 4318, device: 5058, device_type: DiscreteGpu, driver: "NVIDIA", driver_info: "535.54.03", backend: Vulkan }
I'm assuming it has to do with this particular system configuration. Related:
The text was updated successfully, but these errors were encountered: