Merge pull request #84613 from Calinou/glslang-build-only-vulkan

Only build glslang if Vulkan or Direct3D 12 rendering is enabled
This commit is contained in:
Rémi Verschelde 2024-01-11 20:44:50 +01:00
commit 5cdd0c6cd6
No known key found for this signature in database
GPG Key ID: C3336907360768E1
1 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,7 @@
def can_build(env, platform):
return True
# glslang is only needed when Vulkan or Direct3D 12-based renderers are available,
# as OpenGL doesn't use glslang.
return env["vulkan"] or env["d3d12"]
def configure(env):