summaryrefslogtreecommitdiff
path: root/drivers/gl_context/SCsub
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gl_context/SCsub')
-rw-r--r--drivers/gl_context/SCsub9
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/gl_context/SCsub b/drivers/gl_context/SCsub
index a968c10cfd..a6f9b58ea9 100644
--- a/drivers/gl_context/SCsub
+++ b/drivers/gl_context/SCsub
@@ -3,8 +3,11 @@
Import('env')
if (env["platform"] in ["haiku", "osx", "windows", "x11"]):
+ # FIXME: Dead code, now using GLAD
+ """
# Thirdparty source files
if (env['builtin_glew'] != 'no'): # builtin
+
thirdparty_dir = "#thirdparty/glew/"
thirdparty_sources = [
"glew.c",
@@ -16,6 +19,12 @@ if (env["platform"] in ["haiku", "osx", "windows", "x11"]):
env.Append(CPPPATH=[thirdparty_dir])
env.Append(CPPFLAGS=['-DGLEW_ENABLED'])
+ """
+
+ env.add_source_files(env.drivers_sources,"glad.c")
+ env.Append(CPPFLAGS = ['-DGLAD_ENABLED'])
+ env.Append(CPPFLAGS = ['-DGLES_OVER_GL'])
+ env.Append(CPPPATH = ['.'])
# Godot source files
env.add_source_files(env.drivers_sources, "*.cpp")