diff options
author | Jeremy Huddleston <[email protected]> | 2011-06-05 18:19:59 -0400 |
---|---|---|
committer | Jeremy Huddleston <[email protected]> | 2011-06-05 18:19:59 -0400 |
commit | b7f0ed8444544b7fc927823a903db93ebf723cad (patch) | |
tree | de2fb37a9d4159734d968fcdd98b8d908ca7cbcd /src/glx/glxcmds.c | |
parent | 488d6c739f5b6cdfa2c670322057c699644d4e52 (diff) |
apple: Rename _gl_context_modes_find_visual to glx_config_find_visual
Fixes regression introduced by: 6ddf66e9230ee862ac341c4767cf6b3b2dd2552b
Signed-off-by: Jeremy Huddleston <[email protected]>
Diffstat (limited to 'src/glx/glxcmds.c')
-rw-r--r-- | src/glx/glxcmds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glx/glxcmds.c b/src/glx/glxcmds.c index 8b4151d0b4b..2011b112996 100644 --- a/src/glx/glxcmds.c +++ b/src/glx/glxcmds.c @@ -602,7 +602,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; |