diff options
author | José Fonseca <[email protected]> | 2010-04-01 15:15:28 +0100 |
---|---|---|
committer | José Fonseca <[email protected]> | 2010-04-01 15:15:28 +0100 |
commit | 89034b8ae71ca12f9a12935807a33caa686ede00 (patch) | |
tree | 083fe8f155d10f975169da4ea58f77a0c01c6ff8 /src | |
parent | 982d36667dcb53236cfd9668b56f7e91d49e9f0a (diff) |
util: Declare util_half_init_tables only once.
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/auxiliary/util/u_gctors.cpp | 2 | ||||
-rw-r--r-- | src/gallium/auxiliary/util/u_half.c | 3 | ||||
-rw-r--r-- | src/gallium/auxiliary/util/u_half.h | 14 |
3 files changed, 15 insertions, 4 deletions
diff --git a/src/gallium/auxiliary/util/u_gctors.cpp b/src/gallium/auxiliary/util/u_gctors.cpp index 9ea9819d73a..3d2dc5b7ad3 100644 --- a/src/gallium/auxiliary/util/u_gctors.cpp +++ b/src/gallium/auxiliary/util/u_gctors.cpp @@ -4,7 +4,7 @@ __attribute__((constructor)) allows to do this in C, but is GCC-only */ -extern "C" void util_half_init_tables(void); +#include "u_half.h" struct util_gctor_t { diff --git a/src/gallium/auxiliary/util/u_half.c b/src/gallium/auxiliary/util/u_half.c index 8865acb76b5..62d74d4c6f4 100644 --- a/src/gallium/auxiliary/util/u_half.c +++ b/src/gallium/auxiliary/util/u_half.c @@ -22,9 +22,6 @@ uint32_t util_half_to_float_offset_table[64]; uint16_t util_float_to_half_base_table[512]; uint8_t util_float_to_half_shift_table[512]; -/* called by u_gctors.cpp, which defines the prototype itself */ -void util_half_init_tables(void); - void util_half_init_tables(void) { int i; diff --git a/src/gallium/auxiliary/util/u_half.h b/src/gallium/auxiliary/util/u_half.h index 54e7c7458ec..0ca660faf39 100644 --- a/src/gallium/auxiliary/util/u_half.h +++ b/src/gallium/auxiliary/util/u_half.h @@ -4,6 +4,12 @@ #include "pipe/p_compiler.h" #include "u_math.h" + +#ifdef __cplusplus +extern "C" { +#endif + + extern uint32_t util_half_to_float_mantissa_table[2048]; extern uint32_t util_half_to_float_exponent_table[64]; extern uint32_t util_half_to_float_offset_table[64]; @@ -53,4 +59,12 @@ util_float_to_half(float f) return util_floatui_to_half(i.ui); } +/* called by u_gctors.cpp, which defines the prototype itself */ +void util_half_init_tables(void); + + +#ifdef __cplusplus +} +#endif + #endif /* U_HALF_H */ |