Mesa (master): glx: omit loader_loader() for macOS

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Wed Apr 15 12:04:35 UTC 2020


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

Author: Emil Velikov <emil.velikov at collabora.com>
Date:   Tue Apr  7 17:45:33 2020 +0100

glx: omit loader_loader() for macOS

Earlier commit added the code unconditionally, since the loader code
itself is already built on macOS.
Although it did not consider the #include mayhem that src/glx is.

In particular, none of the __GLXDRI{screen,context,drawable) are
available for macOS... those are pulled by dri_common.[ch].

Ideally we'll untangle that, but for the time being simply #ifdef out
the include/call.

Closes: https://gitlab.freedesktop.org/mesa/mesa/issues/2726
Fixes: b699d070a6d ("glx: set the loader_logger early and for everyone")
Signed-off-by: Emil Velikov <emil.velikov at collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4490>

---

 src/glx/glxext.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/src/glx/glxext.c b/src/glx/glxext.c
index cbc59e80921..34e86ae734d 100644
--- a/src/glx/glxext.c
+++ b/src/glx/glxext.c
@@ -50,7 +50,9 @@
 #include "glxextensions.h"
 
 #include "util/debug.h"
+#ifndef GLX_USE_APPLEGL
 #include "dri_common.h"
+#endif
 
 #include <X11/Xlib-xcb.h>
 #include <xcb/xcb.h>
@@ -908,8 +910,10 @@ __glXInitialize(Display * dpy)
 
    dpyPriv->drawHash = __glxHashCreate();
 
+#ifndef GLX_USE_APPLEGL
    /* Set the logger before the *CreateDisplay functions. */
    loader_set_logger(dri_message);
+#endif
 
    /*
     ** Initialize the direct rendering per display data and functions.



More information about the mesa-commit mailing list