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/mapi/glapi/gen/gl_x86_asm.py | |
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/mapi/glapi/gen/gl_x86_asm.py')
-rw-r--r-- | src/mapi/glapi/gen/gl_x86_asm.py | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/mapi/glapi/gen/gl_x86_asm.py b/src/mapi/glapi/gen/gl_x86_asm.py index f373d15db4a..3d262cf5783 100644 --- a/src/mapi/glapi/gen/gl_x86_asm.py +++ b/src/mapi/glapi/gen/gl_x86_asm.py @@ -58,18 +58,9 @@ class PrintGenericStubs(gl_XML.gl_print_base): print('#include "x86/assyntax.h"') print('') print('#if defined(STDCALL_API)') - print('# if defined(USE_MGL_NAMESPACE)') - print('# define GL_PREFIX(n,n2) GLNAME(CONCAT(mgl,n2))') - print('# else') print('# define GL_PREFIX(n,n2) GLNAME(CONCAT(gl,n2))') - print('# endif') print('#else') - print('# if defined(USE_MGL_NAMESPACE)') - print('# define GL_PREFIX(n,n2) GLNAME(CONCAT(mgl,n))') - print('# define _glapi_Dispatch _mglapi_Dispatch') - print('# else') print('# define GL_PREFIX(n,n2) GLNAME(CONCAT(gl,n))') - print('# endif') print('#endif') print('') print('#define GL_OFFSET(x) CODEPTR(REGOFF(4 * x, EAX))') |