mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 09:38:07 +02:00
glx: remove always false ifdef GLX_NO_STATIC_EXTENSION_FUNCTIONS
Quick search through git history (of both mesa and xserver) hows no instances where this was ever set. Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
This commit is contained in:
parent
b7ac0f5671
commit
f121ac68b0
1 changed files with 0 additions and 5 deletions
|
|
@ -281,10 +281,6 @@ typedef void (*PFNGLXDISABLEEXTENSIONPROC) (const char *name);
|
|||
|
||||
/* GLX_ALIAS should be used for functions with a non-void return type.
|
||||
GLX_ALIAS_VOID is for functions with a void return type. */
|
||||
#ifdef GLX_NO_STATIC_EXTENSION_FUNCTIONS
|
||||
# define GLX_ALIAS(return_type, real_func, proto_args, args, aliased_func)
|
||||
# define GLX_ALIAS_VOID(real_func, proto_args, args, aliased_func)
|
||||
#else
|
||||
# if defined(__GNUC__) && !defined(GLX_ALIAS_UNSUPPORTED)
|
||||
/* GLX_ALIAS and GLX_ALIAS_VOID both expand to the macro GLX_ALIAS2. Using the
|
||||
* extra expansion means that the name mangling macros in glx_mangle.h will
|
||||
|
|
@ -305,7 +301,6 @@ typedef void (*PFNGLXDISABLEEXTENSIONPROC) (const char *name);
|
|||
void real_func proto_args \
|
||||
{ aliased_func args ; }
|
||||
# endif /* __GNUC__ */
|
||||
#endif /* GLX_NO_STATIC_EXTENSION_FUNCTIONS */
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue