Mesa (master): egl/dri2/x11: Don't clobber _EGLDriver::API

Chad Versace chadversary at kemper.freedesktop.org
Mon Mar 17 23:14:39 UTC 2014


Module: Mesa
Branch: master
Commit: 88b9e600a6c9ad191c4cb9ba981b5aa15bbe2b81
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=88b9e600a6c9ad191c4cb9ba981b5aa15bbe2b81

Author: Chad Versace <chad.versace at linux.intel.com>
Date:   Tue Jan 28 19:38:39 2014 -0800

egl/dri2/x11: Don't clobber _EGLDriver::API

dri2_initialize_x11_swrast() does a strange thing. For some extensions
it doesn't support, it sets the corresponding functions in
_EGLDriver::API to NULL. The intention here is clear, but misplaced.

NULL or not, the function pointers never get called because their
extensions aren't supported.

Signed-off-by: Chad Versace <chad.versace at linux.intel.com>

---

 src/egl/drivers/dri2/platform_x11.c |    5 -----
 1 file changed, 5 deletions(-)

diff --git a/src/egl/drivers/dri2/platform_x11.c b/src/egl/drivers/dri2/platform_x11.c
index e41758b..3c97a95 100644
--- a/src/egl/drivers/dri2/platform_x11.c
+++ b/src/egl/drivers/dri2/platform_x11.c
@@ -1029,11 +1029,6 @@ dri2_initialize_x11_swrast(_EGLDriver *drv, _EGLDisplay *disp)
 {
    struct dri2_egl_display *dri2_dpy;
 
-   drv->API.CreateImageKHR  = NULL;
-   drv->API.DestroyImageKHR = NULL;
-   drv->API.CreateDRMImageMESA = NULL;
-   drv->API.ExportDRMImageMESA = NULL;
-
    dri2_dpy = calloc(1, sizeof *dri2_dpy);
    if (!dri2_dpy)
       return _eglError(EGL_BAD_ALLOC, "eglInitialize");




More information about the mesa-commit mailing list