mirror of
https://github.com/godotengine/godot.git
synced 2024-11-22 04:06:14 +00:00
Only build glslang if Vulkan or Direct3D 12 rendering is enabled
glslang isn't needed for OpenGL rendering, which includes the web export. This reduces the web release export template's `.wasm` size by about 20 KB, since web builds use `vulkan=no`.
This commit is contained in:
parent
3524346689
commit
2aaa4cd645
@ -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):
|
||||
|
Loading…
Reference in New Issue
Block a user