-
-
Notifications
You must be signed in to change notification settings - Fork 21.9k
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
Show GPU name when RenderingDevice is unsupported in the project creation dialog #97490
Show GPU name when RenderingDevice is unsupported in the project creation dialog #97490
Conversation
…tion dialog This helps diagnose issues on multi-GPU setups, particularly when only one of them supports RenderingDevice-based rendering methods. This can be the case on old laptops with an Intell Haswell IGP and a NVIDIA Maxwell dedicated GPU, where the IGP does not support RenderingDevice but the dedicated GPU does. (In this case, Godot must be forced to run on the dedicated GPU to allow using RenderingDevice-based rendering methods.)
What will it say if I just forgot to install necessary vulkan packages in my package manager but GPU itself supports if? |
No, although you should not need to install specific packages to support Vulkan anyway. One exception is with the Nouveau driver (which doesn't support Vulkan outside of NVK), but you'll need to install the proprietary NVIDIA driver at this point, not just a Vulkan package. |
What about MESA |
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.
Makes sense!
Thanks! |
This helps diagnose issues on multi-GPU setups, particularly when only one of them supports RenderingDevice-based rendering methods.
This can be the case on old laptops with an Intell Haswell IGP and a NVIDIA Maxwell dedicated GPU, where the IGP does not support RenderingDevice but the dedicated GPU does. (In this case, Godot must be forced to run on the dedicated GPU to allow using RenderingDevice-based rendering methods.)
Preview
Ignore the GPU model name (it obviously supports Vulkan), I just changed the condition to get the dialog to show up.