diff options
| author | Michal Krol <michal@vmware.com> | 2010-01-03 17:59:17 +0100 | 
|---|---|---|
| committer | Michal Krol <michal@vmware.com> | 2010-01-05 09:28:32 +0100 | 
| commit | 7c8e67e4aa14510c56ea5c18cf6b2b961cbbf8e6 (patch) | |
| tree | f54fa3fa804bea3fd59f2a351ac9dab4e6bc959d /src | |
| parent | 97f9a147db010ad373b4a85e7769f060ca12ab50 (diff) | |
tgsi: Remove dead micro_umod().
Diffstat (limited to 'src')
| -rw-r--r-- | src/gallium/auxiliary/tgsi/tgsi_exec.c | 14 | 
1 files changed, 0 insertions, 14 deletions
| diff --git a/src/gallium/auxiliary/tgsi/tgsi_exec.c b/src/gallium/auxiliary/tgsi/tgsi_exec.c index a4c47b38f4..bfdb34bf0c 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_exec.c +++ b/src/gallium/auxiliary/tgsi/tgsi_exec.c @@ -712,20 +712,6 @@ micro_min(     dst->f[3] = src0->f[3] < src1->f[3] ? src0->f[3] : src1->f[3];  } -#if 0 -static void -micro_umod( -   union tgsi_exec_channel *dst, -   const union tgsi_exec_channel *src0, -   const union tgsi_exec_channel *src1 ) -{ -   dst->u[0] = src0->u[0] % src1->u[0]; -   dst->u[1] = src0->u[1] % src1->u[1]; -   dst->u[2] = src0->u[2] % src1->u[2]; -   dst->u[3] = src0->u[3] % src1->u[3]; -} -#endif -  static void  micro_mul(     union tgsi_exec_channel *dst, | 
