diff options
author | Jose Fonseca <[email protected]> | 2018-10-18 15:04:49 +0100 |
---|---|---|
committer | Jose Fonseca <[email protected]> | 2018-10-19 16:50:26 +0100 |
commit | 45bacc4b63d83447c144d14cb075eaf7a458c429 (patch) | |
tree | 727df3ac63acddb755b20962af9aaa8be0136db0 /src/gallium/targets/libgl-xlib | |
parent | 68c7833540fabea3d7af8eb470522e6403354e20 (diff) |
scons: Remove gles option.
It's broken, and WGL state tracker is always built with GLES support
noawadays.
Reviewed-by: Brian Paul <[email protected]>
Reviewed-by: Roland Scheidegger <[email protected]>
Diffstat (limited to 'src/gallium/targets/libgl-xlib')
-rw-r--r-- | src/gallium/targets/libgl-xlib/SConscript | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/gallium/targets/libgl-xlib/SConscript b/src/gallium/targets/libgl-xlib/SConscript index fb7a0ce50e3..b49b4e6fe2a 100644 --- a/src/gallium/targets/libgl-xlib/SConscript +++ b/src/gallium/targets/libgl-xlib/SConscript @@ -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, |