mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
Merge pull request #113213 from akien-mga/windows-d3d12-default
Windows: Make Direct3D 12 the default RD driver for new projects
This commit is contained in:
commit
bb7054cdf2
3 changed files with 6 additions and 2 deletions
|
|
@ -233,6 +233,7 @@ def get_flags():
|
|||
|
||||
return {
|
||||
"arch": arch,
|
||||
"d3d12": True,
|
||||
"supported": ["d3d12", "dcomp", "library", "mono", "xaudio2"],
|
||||
}
|
||||
|
||||
|
|
@ -923,7 +924,8 @@ def check_d3d12_installed(env, suffix):
|
|||
print_error(
|
||||
"The Direct3D 12 rendering driver requires dependencies to be installed.\n"
|
||||
"You can install them by running `python misc\\scripts\\install_d3d12_sdk_windows.py`.\n"
|
||||
"See the documentation for more information:\n\t"
|
||||
"https://docs.godotengine.org/en/latest/engine_details/development/compiling/compiling_for_windows.html"
|
||||
"See the documentation for more information:\n"
|
||||
"\thttps://docs.godotengine.org/en/latest/engine_details/development/compiling/compiling_for_windows.html\n"
|
||||
"Alternatively, disable this driver by compiling with `d3d12=no` explicitly."
|
||||
)
|
||||
sys.exit(255)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue