2019-06-16 02:45:24 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2020-03-30 06:28:32 +00:00
|
|
|
Import("env")
|
2019-06-16 02:45:24 +00:00
|
|
|
|
2020-03-30 06:28:32 +00:00
|
|
|
if "RD_GLSL" in env["BUILDERS"]:
|
2021-03-18 00:57:35 +00:00
|
|
|
# find all include files
|
|
|
|
gl_include_files = [str(f) for f in Glob("*_inc.glsl")]
|
|
|
|
|
|
|
|
# find all shader code(all glsl files excluding our include files)
|
|
|
|
glsl_files = [str(f) for f in Glob("*.glsl") if str(f) not in gl_include_files]
|
|
|
|
|
|
|
|
# make sure we recompile shaders if include files change
|
2022-07-02 14:01:26 +00:00
|
|
|
env.Depends([f + ".gen.h" for f in glsl_files], gl_include_files + ["#glsl_builders.py"])
|
2021-03-18 00:57:35 +00:00
|
|
|
|
|
|
|
# compile shaders
|
|
|
|
for glsl_file in glsl_files:
|
|
|
|
env.RD_GLSL(glsl_file)
|
2022-04-27 03:42:50 +00:00
|
|
|
|
|
|
|
SConscript("effects/SCsub")
|
2022-05-20 02:52:19 +00:00
|
|
|
SConscript("environment/SCsub")
|
2022-09-07 11:23:01 +00:00
|
|
|
SConscript("forward_clustered/SCsub")
|
|
|
|
SConscript("forward_mobile/SCsub")
|