diff options
author | Ian Romanick <[email protected]> | 2012-08-01 22:15:12 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2012-09-28 08:19:54 -0700 |
commit | 9c59d11cd29e5ddb678824738299d452b4147e0e (patch) | |
tree | 9ac33ecaec49ae1eb53fd4c987e37fe6ada63264 /src/mesa/main/tests/enum_strings.cpp | |
parent | 6c01a0e770432eda0e29dbd7278a94efc688a6d3 (diff) |
mesa/tests: Move stub function to a separate file
When building with shared-glapi, we can just use Mesa's _mesa_warning without
problems. stubs.cpp is only used when shared-glapi is not used.
Signed-off-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/mesa/main/tests/enum_strings.cpp')
-rw-r--r-- | src/mesa/main/tests/enum_strings.cpp | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/mesa/main/tests/enum_strings.cpp b/src/mesa/main/tests/enum_strings.cpp index 7d46080a608..b9def32bdb7 100644 --- a/src/mesa/main/tests/enum_strings.cpp +++ b/src/mesa/main/tests/enum_strings.cpp @@ -28,17 +28,6 @@ extern "C" { #include "main/enums.h" } -/* Stub this out because the real Mesa implementation is tied into a - * bunch of the GL_ARB_debug infrastructure. This results in pulling - * in most of libmesa.a and a cacade of missing symbols, etc. - */ -extern "C" void -_mesa_warning( struct gl_context *ctx, const char *fmtString, ... ) -{ - (void) ctx; - (void) fmtString; -} - struct enum_info { int value; const char *name; |