diff options
author | Adam Jackson <ajax@benzedrine.nwnk.net> | 2007-04-08 14:40:03 -0400 |
---|---|---|
committer | Adam Jackson <ajax@benzedrine.nwnk.net> | 2007-04-08 14:40:03 -0400 |
commit | d8bfc42bb778e46e64569a6f621e9d41ddca2e59 (patch) | |
tree | fb655aa9824e56eb4466694f4bcd2633bbd54350 /src/glx/x11/glxext.c | |
parent | ca7885f7337141b50abd8f64d8773cabbf0256fe (diff) |
Make sure GLX entrypoints are marked PUBLIC.
Fedora bug #229808.
Diffstat (limited to 'src/glx/x11/glxext.c')
-rw-r--r-- | src/glx/x11/glxext.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/glx/x11/glxext.c b/src/glx/x11/glxext.c index a039bca234..95e7d6f943 100644 --- a/src/glx/x11/glxext.c +++ b/src/glx/x11/glxext.c @@ -1488,7 +1488,7 @@ void __glXSendLargeCommand(__GLXcontext *ctx, /************************************************************************/ -GLXContext glXGetCurrentContext(void) +PUBLIC GLXContext glXGetCurrentContext(void) { GLXContext cx = __glXGetCurrentContext(); @@ -1499,7 +1499,7 @@ GLXContext glXGetCurrentContext(void) } } -GLXDrawable glXGetCurrentDrawable(void) +PUBLIC GLXDrawable glXGetCurrentDrawable(void) { GLXContext gc = __glXGetCurrentContext(); return gc->currentDrawable; |