diff options
author | Vinson Lee <[email protected]> | 2010-02-20 00:56:32 -0800 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2010-02-20 00:56:32 -0800 |
commit | 5fd84e0246f58cc59757d0bb2b94427899c944e1 (patch) | |
tree | c458d1834d5ff53889aaef57df10c7466ba14da9 /src/gallium | |
parent | a45f2ec7b7e929d705df23471ee92f05e233338c (diff) |
tgsi: ifdef out unused function micro_sqrt.
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/auxiliary/tgsi/tgsi_exec.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_exec.c b/src/gallium/auxiliary/tgsi/tgsi_exec.c index fdbf2b436e4..593c3cbfb38 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_exec.c +++ b/src/gallium/auxiliary/tgsi/tgsi_exec.c @@ -960,6 +960,7 @@ micro_pow( #endif } +#if 0 static void micro_sqrt( union tgsi_exec_channel *dst, const union tgsi_exec_channel *src ) @@ -969,6 +970,7 @@ micro_sqrt( union tgsi_exec_channel *dst, dst->f[2] = sqrtf( src->f[2] ); dst->f[3] = sqrtf( src->f[3] ); } +#endif static void micro_sub(union tgsi_exec_channel *dst, |