summaryrefslogtreecommitdiffstats
path: root/src/glx/glx_pbuffer.c
diff options
context:
space:
mode:
authorJeremy Huddleston <jeremyhu@apple.com>2011-06-05 17:02:33 -0400
committerJeremy Huddleston <jeremyhu@apple.com>2011-06-05 18:07:05 -0400
commitbb621cb61e0c6d7fcd06df5a77c75efe5c76926d (patch)
tree5ef57adcccae97b3abcf1065d30485a237aeafac /src/glx/glx_pbuffer.c
parent4c9bab78a118953baf307e31cd53e731299f0151 (diff)
downloadexternal_mesa3d-bb621cb61e0c6d7fcd06df5a77c75efe5c76926d.zip
external_mesa3d-bb621cb61e0c6d7fcd06df5a77c75efe5c76926d.tar.gz
external_mesa3d-bb621cb61e0c6d7fcd06df5a77c75efe5c76926d.tar.bz2
apple: Rename __GLcontextModes to struct glx_config
Fixes regression introduced by: 6ddf66e9230ee862ac341c4767cf6b3b2dd2552b Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
Diffstat (limited to 'src/glx/glx_pbuffer.c')
-rw-r--r--src/glx/glx_pbuffer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glx/glx_pbuffer.c b/src/glx/glx_pbuffer.c
index 5c76c74..1f4c0f3 100644
--- a/src/glx/glx_pbuffer.c
+++ b/src/glx/glx_pbuffer.c
@@ -835,7 +835,7 @@ glXCreatePixmap(Display * dpy, GLXFBConfig config, Pixmap pixmap,
WARN_ONCE_GLX_1_3(dpy, __func__);
#ifdef GLX_USE_APPLEGL
- const struct glx_config *modes = (const __GLcontextModes *) config;
+ const struct glx_config *modes = (const struct glx_config *) config;
if (apple_glx_pixmap_create(dpy, modes->screen, pixmap, modes))
return None;