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 | |
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')
-rw-r--r-- | src/egl/main/Makefile.am | 6 | ||||
-rw-r--r-- | src/egl/main/egldriver.c | 3 |
2 files changed, 0 insertions, 9 deletions
diff --git a/src/egl/main/Makefile.am b/src/egl/main/Makefile.am index 4c20d1215ee..46e890a99f6 100644 --- a/src/egl/main/Makefile.am +++ b/src/egl/main/Makefile.am @@ -102,12 +102,6 @@ if HAVE_EGL_PLATFORM_NULL AM_CFLAGS += -DHAVE_NULL_PLATFORM endif -if HAVE_EGL_DRIVER_GLX -AM_CFLAGS += -D_EGL_BUILT_IN_DRIVER_GLX -libEGL_la_LIBADD += ../drivers/glx/libegl_glx.la -libEGL_la_LIBADD += $(DLOPEN_LIBS) -endif - if HAVE_EGL_DRIVER_DRI2 AM_CFLAGS += -D_EGL_BUILT_IN_DRIVER_DRI2 AM_CFLAGS += -DHAVE_XCB_DRI2 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 } }; |