Mesa (gallium-0.1): tgsi: Remove redundant micro_ge() -- use micro_le().

Jose Fonseca jrfonseca at kemper.freedesktop.org
Fri Aug 28 17:59:28 UTC 2009


Module: Mesa
Branch: gallium-0.1
Commit: e4b6353fdebb1da06dad31605300cc7c6841839e
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=e4b6353fdebb1da06dad31605300cc7c6841839e

Author: Michal Krol <michal at vmware.com>
Date:   Mon Mar  9 08:44:28 2009 +0100

tgsi: Remove redundant micro_ge() -- use micro_le().

---

 src/gallium/auxiliary/tgsi/tgsi_exec.c |   16 +---------------
 1 files changed, 1 insertions(+), 15 deletions(-)

diff --git a/src/gallium/auxiliary/tgsi/tgsi_exec.c b/src/gallium/auxiliary/tgsi/tgsi_exec.c
index d2d4cf7..ae77e67 100644
--- a/src/gallium/auxiliary/tgsi/tgsi_exec.c
+++ b/src/gallium/auxiliary/tgsi/tgsi_exec.c
@@ -526,20 +526,6 @@ micro_frc(
 }
 
 static void
-micro_ge(
-   union tgsi_exec_channel *dst,
-   const union tgsi_exec_channel *src0,
-   const union tgsi_exec_channel *src1,
-   const union tgsi_exec_channel *src2,
-   const union tgsi_exec_channel *src3 )
-{
-   dst->f[0] = src0->f[0] >= src1->f[0] ? src2->f[0] : src3->f[0];
-   dst->f[1] = src0->f[1] >= src1->f[1] ? src2->f[1] : src3->f[1];
-   dst->f[2] = src0->f[2] >= src1->f[2] ? src2->f[2] : src3->f[2];
-   dst->f[3] = src0->f[3] >= src1->f[3] ? src2->f[3] : src3->f[3];
-}
-
-static void
 micro_i2f(
    union tgsi_exec_channel *dst,
    const union tgsi_exec_channel *src )
@@ -2016,7 +2002,7 @@ exec_instruction(
       FOR_EACH_ENABLED_CHANNEL( *inst, chan_index ) {
          FETCH( &r[0], 0, chan_index );
          FETCH( &r[1], 1, chan_index );
-         micro_ge( &r[0], &r[0], &r[1], &mach->Temps[TEMP_1_I].xyzw[TEMP_1_C], &mach->Temps[TEMP_0_I].xyzw[TEMP_0_C] );
+         micro_le( &r[0], &r[1], &r[0], &mach->Temps[TEMP_1_I].xyzw[TEMP_1_C], &mach->Temps[TEMP_0_I].xyzw[TEMP_0_C] );
          STORE( &r[0], 0, chan_index );
       }
       break;




More information about the mesa-commit mailing list