Module: Mesa Branch: 7.9 Commit: 9bcc21415985552e7421f83fe680a391ae7f41ae URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=9bcc21415985552e7421f83fe680a391ae7f41ae
Author: Jeremy Huddleston <[email protected]> Date: Sun Jun 5 18:19:59 2011 -0400 apple: Rename _gl_context_modes_find_visual to glx_config_find_visual Fixes regression introduced by: 6ddf66e9230ee862ac341c4767cf6b3b2dd2552b Signed-off-by: Jeremy Huddleston <[email protected]> (cherry picked from commit b7f0ed8444544b7fc927823a903db93ebf723cad) --- 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 d9ca3f5..f26ba1d 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; _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
