summaryrefslogtreecommitdiffstats
path: root/src/gallium/include/pipe/p_compiler.h
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2015-03-03 09:01:03 -0700
committerBrian Paul <brianp@vmware.com>2015-03-04 08:33:48 -0700
commit5bebd7099ab22c6f1498cd928170561718d6ff36 (patch)
tree0c7f8c9c773312d1a753974825e40064222a2397 /src/gallium/include/pipe/p_compiler.h
parent25656753d765680ea4a592ff812deac132e2262d (diff)
downloadexternal_mesa3d-5bebd7099ab22c6f1498cd928170561718d6ff36.zip
external_mesa3d-5bebd7099ab22c6f1498cd928170561718d6ff36.tar.gz
external_mesa3d-5bebd7099ab22c6f1498cd928170561718d6ff36.tar.bz2
mesa: consolidate PUBLIC macro definition
Define the macro in src/util/macros.h rather than in two different places. Note that USED isn't actually used anywhere at this time. Reviewed-by: Jose Fonseca <jfonseca@vmware.com>
Diffstat (limited to 'src/gallium/include/pipe/p_compiler.h')
-rw-r--r--src/gallium/include/pipe/p_compiler.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/gallium/include/pipe/p_compiler.h b/src/gallium/include/pipe/p_compiler.h
index cc4f444..0e95369 100644
--- a/src/gallium/include/pipe/p_compiler.h
+++ b/src/gallium/include/pipe/p_compiler.h
@@ -111,18 +111,6 @@ typedef unsigned char boolean;
#endif
-/* Function visibility */
-#ifndef PUBLIC
-# if defined(__GNUC__) || (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590))
-# define PUBLIC __attribute__((visibility("default")))
-# elif defined(_MSC_VER)
-# define PUBLIC __declspec(dllexport)
-# else
-# define PUBLIC
-# endif
-#endif
-
-
/* XXX: Use standard `__func__` instead */
#ifndef __FUNCTION__
# define __FUNCTION__ __func__