tgsi: ifdef out unused function micro_sqrt.

This commit is contained in:
Vinson Lee 2010-02-20 00:56:32 -08:00
parent a45f2ec7b7
commit 5fd84e0246

View file

@ -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,