diff options
author | Eric Engestrom <[email protected]> | 2019-10-10 16:26:52 +0100 |
---|---|---|
committer | Eric Engestrom <[email protected]> | 2019-10-10 21:40:48 +0100 |
commit | a0829cf23b307ca44ab8c4505974fb7c8d71a35a (patch) | |
tree | c1ae541c091693b03ed4555ca7a850326675c775 /src/mesa/drivers/osmesa | |
parent | 2026ff5165ad0da1ff7680fdb579702d31097a6a (diff) |
GL: drop symbols mangling support
SCons and Meson have never supported that feature, and Autotools was
deleted over 6 months ago and no-one complained yet, so it's pretty
obvious nobody cares about it.
Fixes: 95aefc94a941701616fd ("Delete autotools")
Signed-off-by: Eric Engestrom <[email protected]>
Acked-by: Dylan Baker <[email protected]>
Diffstat (limited to 'src/mesa/drivers/osmesa')
-rw-r--r-- | src/mesa/drivers/osmesa/osmesa.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/mesa/drivers/osmesa/osmesa.c b/src/mesa/drivers/osmesa/osmesa.c index 5a3099af984..acf1e3739ef 100644 --- a/src/mesa/drivers/osmesa/osmesa.c +++ b/src/mesa/drivers/osmesa/osmesa.c @@ -1289,11 +1289,7 @@ OSMesaPostprocess(OSMesaContext osmesa, const char *filter, #include "glapi/glapi.h" #include "glapitable.h" -#if defined(USE_MGL_NAMESPACE) -#define NAME(func) mgl##func -#else #define NAME(func) gl##func -#endif #define DISPATCH(FUNC, ARGS, MESSAGE) \ GET_DISPATCH()->FUNC ARGS |