diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2023-11-08 12:23:47 +0100 |
---|---|---|
committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2024-01-11 00:42:56 +0100 |
commit | 2aaa4cd64525daa24a033f1ea3468d5cfdd6b735 (patch) | |
tree | 9fdc28edbba7a6843223e1950fe62a20249acde6 /modules/glslang/config.py | |
parent | 352434668923978f54f2236f20116fc96ebc9173 (diff) | |
download | redot-engine-2aaa4cd64525daa24a033f1ea3468d5cfdd6b735.tar.gz |
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`.
Diffstat (limited to 'modules/glslang/config.py')
-rw-r--r-- | modules/glslang/config.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/glslang/config.py b/modules/glslang/config.py index d22f9454ed..1169776a73 100644 --- a/modules/glslang/config.py +++ b/modules/glslang/config.py @@ -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): |