-
-
Notifications
You must be signed in to change notification settings - Fork 3.7k
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
App crashes at startup #7620
Comments
We should investigate changing the default |
We just moved to enabling all backends. What I find odd is that it claims to be using the Vulkan backend but hits this panic about GL. I wonder why. Perhaps some probing is done. That has the potential to panic? @cwfitzgerald? |
This is gfx-rs/wgpu#2540 |
Summarizing discussions on this from discord: This appears to be because it tries to load libEGL.dll and libGLESv2.dll, which means that if it can't find them locally, it also tries searching in your PATH for them, and because Angle is common there's a chance that those are somewhere in your PATH. (https://github.com/google/angle) The problem is that it's finding old versions of those dlls (because people package Angle once and don't bother updating it...) and trying to use them (and they're so outdated they don't support |
This is now fixed after an update for glow. |
Bevy version
main branch 9ef840e
Relevant system information
What you did
Created a new project with the following code
This is the Cargo.toml
What went wrong
The app crashed right after the window opened with the following error
Additional information
A workaround is to add the following when setting up
DefaultPlugins
Here are two relevant discord threads
https://discord.com/channels/691052431525675048/1073274796697198622
https://discord.com/channels/691052431525675048/1073786235996352632
The text was updated successfully, but these errors were encountered: