diff options
author | Chad Versace <[email protected]> | 2014-01-07 12:08:30 -0800 |
---|---|---|
committer | Chad Versace <[email protected]> | 2014-02-05 18:19:26 -0800 |
commit | 1340e24406fbdfdbfb49dc19d7d5d72d6e363631 (patch) | |
tree | 09545176bdfa21dcf9a4ce9a548ea92328d8b465 /src/egl/main/egldriver.c | |
parent | 0224bd20f391e8e26637380bb50187ba2fb51ee4 (diff) |
egl/glx: Remove egl_glx driver
Mesa now has a real, feature-rich EGL implementation on X11 via xcb.
Therefore I believe there is no longer a practical need for the egl_glx
driver.
Furthermore, egl_glx appears to be unmaintained. The most recent
nontrivial commit to egl_glx was 6baa5f1 on 2011-11-25.
Tested by running weston-smoke in windowed Weston on X with i965.
Signed-off-by: Chad Versace <[email protected]>
Acked-by: Kenneth Graunke <[email protected]>
Acked-by: Kristian Høgsberg <[email protected]>
Diffstat (limited to 'src/egl/main/egldriver.c')
-rw-r--r-- | src/egl/main/egldriver.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/egl/main/egldriver.c b/src/egl/main/egldriver.c index 0af8ab8306e..78d81309265 100644 --- a/src/egl/main/egldriver.c +++ b/src/egl/main/egldriver.c @@ -73,9 +73,6 @@ const struct { #ifdef _EGL_BUILT_IN_DRIVER_DRI2 { "egl_dri2", _eglBuiltInDriverDRI2 }, #endif -#ifdef _EGL_BUILT_IN_DRIVER_GLX - { "egl_glx", _eglBuiltInDriverGLX }, -#endif { NULL, NULL } }; |