summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct6
1 files changed, 3 insertions, 3 deletions
diff --git a/SConstruct b/SConstruct
index cd4657b20c..78e3d28337 100644
--- a/SConstruct
+++ b/SConstruct
@@ -15,7 +15,7 @@ from collections import OrderedDict
# Local
import methods
import glsl_builders
-import opengl_builders
+import gles3_builders
from platform_methods import run_in_subprocess
# Scan possible build platforms
@@ -711,8 +711,8 @@ if selected_platform in platform_list:
if not env["platform"] == "server":
env.Append(
BUILDERS={
- "OpenGL_GLSL": env.Builder(
- action=run_in_subprocess(opengl_builders.build_opengl_headers),
+ "GLES3_GLSL": env.Builder(
+ action=run_in_subprocess(gles3_builders.build_gles3_headers),
suffix="glsl.gen.h",
src_suffix=".glsl",
)