godot/modules/glslang/config.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
226 B
Python
Raw Normal View History

def can_build(env, platform):
# 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):
pass