summaryrefslogtreecommitdiff
path: root/drivers/opengl/shaders/SCsub
diff options
context:
space:
mode:
authorHugo Locurcio <hugo.locurcio@hugo.pro>2021-09-27 01:07:10 +0200
committerHugo Locurcio <hugo.locurcio@hugo.pro>2021-10-30 02:05:49 +0200
commitce97ddbcb125228cc88fbfdcae932e110ee7daee (patch)
treef3e2f17be75973806d6f468826e0232cf35b247a /drivers/opengl/shaders/SCsub
parente3491a37445014cc3527d6f2c1467063222b2dd8 (diff)
Rename GLES2 driver to OpenGL to prepare for the upgrade to GLES3
- Use lowercase driver names for the `--rendering-driver` command line argument.
Diffstat (limited to 'drivers/opengl/shaders/SCsub')
-rw-r--r--drivers/opengl/shaders/SCsub14
1 files changed, 14 insertions, 0 deletions
diff --git a/drivers/opengl/shaders/SCsub b/drivers/opengl/shaders/SCsub
new file mode 100644
index 0000000000..dcd8bf6030
--- /dev/null
+++ b/drivers/opengl/shaders/SCsub
@@ -0,0 +1,14 @@
+#!/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")