blob: 79247f38d4bdfd00db8d58e27cbcf7a70c446b43 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/usr/bin/env python
Import("env")
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")
if "GLES3_GLSL" in env["BUILDERS"]:
env.GLES3_GLSL("canvas.glsl")
env.GLES3_GLSL("copy.glsl")
env.GLES3_GLSL("sky.glsl")
|