2021-10-26 17:18:39 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
Import("env")
|
|
|
|
|
2022-04-24 23:59:24 +02:00
|
|
|
env.Depends("#drivers/gles3/shaders/copy.glsl.gen.h", "#core/math/basis.h")
|
|
|
|
env.Depends("#drivers/gles3/shaders/copy.glsl.gen.h", "#core/math/transform_2d.h")
|
|
|
|
|
2021-10-26 17:18:39 +02:00
|
|
|
if "GLES3_GLSL" in env["BUILDERS"]:
|
|
|
|
env.GLES3_GLSL("canvas.glsl")
|
2021-11-16 16:25:42 +01:00
|
|
|
env.GLES3_GLSL("copy.glsl")
|
2022-02-20 01:08:53 +01:00
|
|
|
env.GLES3_GLSL("sky.glsl")
|