diff options
author | Ian Romanick <[email protected]> | 2005-07-26 22:53:38 +0000 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2005-07-26 22:53:38 +0000 |
commit | ab7c6ffadccbeb96b6f4ac58fb75e90697cd30c5 (patch) | |
tree | eb7318b740cb5bcfc8b6cf530766c7cb88a8bfd4 /src/glx/x11/glxextensions.h | |
parent | 13613986004fcd43e8079b23d8128c2d572bca76 (diff) |
Remove the last remnants of GLX_BUILT_IN_XMESA. This allows the removal of
the evil, ugly GLX_PREFIX macro as well.
Diffstat (limited to 'src/glx/x11/glxextensions.h')
-rw-r--r-- | src/glx/x11/glxextensions.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/glx/x11/glxextensions.h b/src/glx/x11/glxextensions.h index fd19bd23351..b4b03729ce3 100644 --- a/src/glx/x11/glxextensions.h +++ b/src/glx/x11/glxextensions.h @@ -262,16 +262,16 @@ typedef void (* PFNGLXDISABLEEXTENSIONPROC) ( const char * name ); #else # if defined(__GNUC__) && !defined(GLX_ALIAS_UNSUPPORTED) # define GLX_ALIAS(return_type, real_func, proto_args, args, aliased_func) \ - return_type GLX_PREFIX( real_func ) proto_args \ + return_type real_func proto_args \ __attribute__ ((alias( # aliased_func ) )); # define GLX_ALIAS_VOID(real_func, proto_args, args, aliased_func) \ GLX_ALIAS(void, real_func, proto_args, args, aliased_func) # else # define GLX_ALIAS(return_type, real_func, proto_args, args, aliased_func) \ - return_type GLX_PREFIX( real_func ) proto_args \ + return_type real_func proto_args \ { return aliased_func args ; } # define GLX_ALIAS_VOID(real_func, proto_args, args, aliased_func) \ - void GLX_PREFIX( real_func ) proto_args \ + void real_func proto_args \ { aliased_func args ; } # endif /* __GNUC__ */ #endif /* GLX_NO_STATIC_EXTENSION_FUNCTIONS */ |