scons: Remove gles option.
authorJose Fonseca <jfonseca@vmware.com>
Thu, 18 Oct 2018 14:04:49 +0000 (15:04 +0100)
committerJose Fonseca <jfonseca@vmware.com>
Fri, 19 Oct 2018 15:50:26 +0000 (16:50 +0100)
It's broken, and WGL state tracker is always built with GLES support
noawadays.

Reviewed-by: Brian Paul <brianp@vmware.com>
Reviewed-by: Roland Scheidegger <sroland@vmware.com>
common.py
src/SConscript
src/gallium/state_trackers/osmesa/SConscript
src/gallium/state_trackers/wgl/SConscript
src/gallium/targets/libgl-gdi/SConscript
src/gallium/targets/libgl-xlib/SConscript
src/mapi/glapi/SConscript
src/mapi/shared-glapi/SConscript
src/mesa/SConscript
src/mesa/drivers/osmesa/SConscript

index 113fc7f5c122a368e94f8d0b549f236655223261..f4f2bb44c1cb30092cfd7475d0db3eb9693301da 100644 (file)
--- a/common.py
+++ b/common.py
@@ -99,8 +99,6 @@ def AddOptions(opts):
                         'enable static code analysis where available', 'no'))
     opts.Add(BoolOption('asan', 'enable Address Sanitizer', 'no'))
     opts.Add('toolchain', 'compiler toolchain', default_toolchain)
-    opts.Add(BoolOption('gles', 'EXPERIMENTAL: enable OpenGL ES support',
-                        'no'))
     opts.Add(BoolOption('llvm', 'use LLVM', default_llvm))
     opts.Add(BoolOption('openmp', 'EXPERIMENTAL: compile with openmp (swrast)',
                         'no'))
index 95ea061c4bba124c855a50b931b8e8974123e93c..54350a9cdcc317749268911d625b289ca8b91f97 100644 (file)
@@ -42,10 +42,6 @@ env.Append(CPPPATH = ["#" + env['build_dir']])
 if env['platform'] != 'windows':
     SConscript('loader/SConscript')
 
-# When env['gles'] is set, the targets defined in mapi/glapi/SConscript are not
-# used.  libgl-xlib and libgl-gdi adapt themselves to use the targets defined
-# in mapi/glapi-shared/SConscript.  mesa/SConscript also adapts itself to
-# enable OpenGL ES support.
 SConscript('mapi/glapi/gen/SConscript')
 SConscript('mapi/glapi/SConscript')
 
@@ -61,8 +57,5 @@ if not env['embedded']:
     if env['platform'] == 'haiku':
         SConscript('egl/SConscript')
 
-    if env['gles']:
-        SConscript('mapi/shared-glapi/SConscript')
-
 SConscript('gallium/SConscript')
 
index f5519f13762fd8fac7f602be42042703c8c8c8cf..be67d0fe7396e5e751ed8fdb56e9d0e993325ef7 100644 (file)
@@ -14,10 +14,8 @@ if env['platform'] == 'windows':
     env.AppendUnique(CPPDEFINES = [
         'BUILD_GL32', # declare gl* as __declspec(dllexport) in Mesa headers
         'WIN32_LEAN_AND_MEAN', # http://msdn2.microsoft.com/en-us/library/6dwk3a1z.aspx
+        '_GLAPI_NO_EXPORTS', # prevent _glapi_* from being declared __declspec(dllimport)
     ])
-    if not env['gles']:
-        # prevent _glapi_* from being declared __declspec(dllimport)
-        env.Append(CPPDEFINES = ['_GLAPI_NO_EXPORTS'])
 
 st_osmesa = env.ConvenienceLibrary(
     target ='st_osmesa',
index a7fbb07a89ad98f74463105f0a3e762bfa83f7fb..bbf5ebd9764a661503b898353ea1b576a9674570 100644 (file)
@@ -14,10 +14,8 @@ env.AppendUnique(CPPDEFINES = [
     '_GDI32_', # prevent wgl* being declared __declspec(dllimport)
     'BUILD_GL32', # declare gl* as __declspec(dllexport) in Mesa headers
     'WIN32_LEAN_AND_MEAN', # http://msdn2.microsoft.com/en-us/library/6dwk3a1z.aspx
+    '_GLAPI_NO_EXPORTS', # prevent _glapi_* from being declared __declspec(dllimport)
 ])
-if not env['gles']:
-    # prevent _glapi_* from being declared __declspec(dllimport)
-    env.Append(CPPDEFINES = ['_GLAPI_NO_EXPORTS'])
 
 wgl = env.ConvenienceLibrary(
     target ='wgl',
index 132cb73358d4443ee28f6f040b92977571ca7b4e..94feca24ef30e30d97591f8e96c81f2d93433862 100644 (file)
@@ -48,12 +48,6 @@ else:
 
 env['no_import_lib'] = 1
 
-# when GLES is enabled, gl* and _glapi_* belong to bridge_glapi and
-# shared_glapi respectively
-if env['gles']:
-    env.Prepend(LIBPATH = [shared_glapi.dir])
-    glapi = [bridge_glapi, 'libglapi']
-
 opengl32 = env.SharedLibrary(
     target ='opengl32',
     source = sources,
index fb7a0ce50e3bb2c58fd2298af12c2f29021237eb..b49b4e6fe2a990f4c1dd46b7e07b722b91fefdb0 100644 (file)
@@ -18,12 +18,6 @@ env.Append(CPPDEFINES = ['USE_XSHM'])
 env.Prepend(LIBS = env['X11_LIBS'])
 env.Prepend(LIBPATH = env['X11_LIBPATH'])
 
-# when GLES is enabled, gl* and _glapi_* belong to bridge_glapi and
-# shared_glapi respectively
-if env['gles']:
-    env.Prepend(LIBPATH = [shared_glapi.dir])
-    glapi = [bridge_glapi, 'glapi']
-
 env.Prepend(LIBS = [
     st_xlib,
     ws_xlib,
index 08fed6c0d35e107d8d0ac38ec3975210004b8bb9..118da1d53f7c8e2ae9f0468c52d02833503357a0 100644 (file)
@@ -19,12 +19,8 @@ if env['platform'] == 'windows':
         '_GDI32_', # prevent gl* being declared __declspec(dllimport) in MS headers
         'BUILD_GL32', # declare gl* as __declspec(dllexport) in Mesa headers
         'KHRONOS_DLL_EXPORTS', # declare gl* as __declspec(dllexport) in Khronos headers
+        '_GLAPI_NO_EXPORTS', # prevent _glapi_* from being declared __declspec(dllimport)
     ])
-    if env['gles']:
-        env.Append(CPPDEFINES = ['_GLAPI_DLL_EXPORTS'])
-    else:
-        # prevent _glapi_* from being declared __declspec(dllimport)
-        env.Append(CPPDEFINES = ['_GLAPI_NO_EXPORTS'])
 
 env.Append(CPPPATH = [
     '#/src',
index 5d74bd6813fcea506bb8de1b2d926cfeb44b3465..060c61dadcef4005509c3efff9e725169ed1203b 100644 (file)
@@ -113,11 +113,4 @@ if env['platform'] == 'windows':
 else:
     shared_glapi = env.FindIxes(shared_glapi, 'SHLIBPREFIX', 'SHLIBSUFFIX')
 
-# build glapi bridge as a convenience libarary for libgl-xlib/libgl-gdi
-bridge_glapi_objects = mapi_objects(env, 'glapi', 'bridge')
-bridge_glapi = env.ConvenienceLibrary(
-    target = 'glapi_bridge',
-    source = bridge_glapi_objects,
-)
-
-Export(['shared_glapi', 'bridge_glapi'])
+Export(['shared_glapi'])
index 5a21b64f561e477d561f7a238d2c416600364fea..eaf23fbae1865b2fe99c7a3b8b60420f7a86a588 100644 (file)
@@ -27,10 +27,8 @@ if env['platform'] == 'windows':
     env.Append(CPPDEFINES = [
         '_GDI32_', # prevent gl* being declared __declspec(dllimport) in MS headers
         'BUILD_GL32', # declare gl* as __declspec(dllexport) in Mesa headers
+        '_GLAPI_NO_EXPORTS', # prevent _glapi_* from being declared __declspec(dllimport)
     ])
-    if not env['gles']:
-        # prevent _glapi_* from being declared __declspec(dllimport)
-        env.Append(CPPDEFINES = ['_GLAPI_NO_EXPORTS'])
 
 # parse Makefile.sources
 source_lists = env.ParseSourceList('Makefile.sources')
index 064f3da5da9492fc6dd9ac3584d026942a6b67e0..b08a79eb8a5b417b93c2a5809f95e66e75fcb168 100644 (file)
@@ -28,10 +28,8 @@ if env['platform'] == 'windows':
     env.AppendUnique(CPPDEFINES = [
         '_GDI32_', # prevent wgl* being declared __declspec(dllimport)
         'BUILD_GL32', # declare gl* as __declspec(dllexport) in Mesa headers
+        '_GLAPI_NO_EXPORTS', # prevent _glapi_* from being declared __declspec(dllimport)
     ])
-    if not env['gles']:
-        # prevent _glapi_* from being declared __declspec(dllimport)
-        env.Append(CPPDEFINES = ['_GLAPI_NO_EXPORTS'])
 
     sources += ['osmesa.def']