summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Huddleston <jeremyhu@apple.com>2011-06-05 18:19:59 -0400
committerJeremy Huddleston <jeremyhu@apple.com>2011-06-06 11:51:28 -0400
commitd92931467da389433ca77cdb040a72a6962f9ba4 (patch)
treecf1a1475333eb486d7aadf3bec974843f384c64d
parentee004cc681556b6f305676c66488ebdba933dbd6 (diff)
apple: Rename _gl_context_modes_find_visual to glx_config_find_visual
Fixes regression introduced by: 6ddf66e9230ee862ac341c4767cf6b3b2dd2552b Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> (cherry picked from commit b7f0ed8444544b7fc927823a903db93ebf723cad)
-rw-r--r--src/glx/glxcmds.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glx/glxcmds.c b/src/glx/glxcmds.c
index d9ca3f51af3..f26ba1d9a37 100644
--- a/src/glx/glxcmds.c
+++ b/src/glx/glxcmds.c
@@ -606,7 +606,7 @@ glXCreateGLXPixmap(Display * dpy, XVisualInfo * vis, Pixmap pixmap)
struct glx_screen *const psc = GetGLXScreenConfigs(dpy, screen);
const struct glx_config *config;
- config = _gl_context_modes_find_visual(psc->visuals, vis->visualid);
+ config = glx_config_find_visual(psc->visuals, vis->visualid);
if(apple_glx_pixmap_create(dpy, vis->screen, pixmap, config))
return None;