virtualx-engine/drivers/opengl/shaders/SCsub
Hugo Locurcio ce97ddbcb1
Rename GLES2 driver to OpenGL to prepare for the upgrade to GLES3
- Use lowercase driver names for the `--rendering-driver`
  command line argument.
2021-10-30 02:05:49 +02:00

14 lines
420 B
Python

#!/usr/bin/env python
Import("env")
if "OpenGL_GLSL" in env["BUILDERS"]:
env.OpenGL_GLSL("copy.glsl")
env.OpenGL_GLSL("canvas.glsl")
env.OpenGL_GLSL("canvas_shadow.glsl")
env.OpenGL_GLSL("scene.glsl")
env.OpenGL_GLSL("cubemap_filter.glsl")
env.OpenGL_GLSL("cube_to_dp.glsl")
env.OpenGL_GLSL("effect_blur.glsl")
env.OpenGL_GLSL("tonemap.glsl")
env.OpenGL_GLSL("lens_distorted.glsl")