diff options
author | Emil Velikov <emil.velikov@collabora.com> | 2016-04-25 14:08:28 +0100 |
---|---|---|
committer | Emil Velikov <emil.l.velikov@gmail.com> | 2016-04-25 14:29:41 +0100 |
commit | 6986bba159158dfcc1b826e28b72761368fa0ee1 (patch) | |
tree | 424d98e2bf258359a9d516ee63ed9cab365d07b0 | |
parent | 83550321958b5c7969847e3662a56de0e4fb9f39 (diff) | |
download | mesa-6986bba159158dfcc1b826e28b72761368fa0ee1.tar.gz |
glx/glvnd: update against GLVND vendorFromContext change
Namely commit 5c27a7817fa30a6abe11b4d9c9f8a537c4091faf
Author: Kyle Brenneman <kbrenneman@nvidia.com>
Date: Mon Jan 4 15:01:32 2016 -0700
GLX: Don't record the display pointer for contexts and configs.
Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
-rw-r--r-- | src/glx/glxglvnddispatchfuncs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glx/glxglvnddispatchfuncs.h b/src/glx/glxglvnddispatchfuncs.h index 0a0c71b7a2f..831bf889a65 100644 --- a/src/glx/glxglvnddispatchfuncs.h +++ b/src/glx/glxglvnddispatchfuncs.h @@ -63,7 +63,7 @@ static inline void GetDispatchFromDrawable(Display *dpy, GLXDrawable drawable, static inline void GetDispatchFromContext(Display *dpy, GLXContext ctx, __GLXvendorInfo **retVendor) { - __VND.vendorFromContext(ctx, NULL, retVendor); + __VND.vendorFromContext(ctx, retVendor); } static inline void GetDispatchFromFBConfig(Display *dpy, GLXFBConfig config, |