Mesa (master): tgsi_exec: Fix mask calculation for emit_kill_if.

Jose Fonseca jrfonseca at kemper.freedesktop.org
Thu Nov 21 14:00:14 UTC 2013


Module: Mesa
Branch: master
Commit: edd9efc2fb99ed67df38fa53ecd0283b8156c4ec
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=edd9efc2fb99ed67df38fa53ecd0283b8156c4ec

Author: José Fonseca <jfonseca at vmware.com>
Date:   Wed Nov 20 17:31:43 2013 +0000

tgsi_exec: Fix mask calculation for emit_kill_if.

Same as Si Chen's commit e7a5905d8a3960b0981750f8131e3af9acbfcdb8 for
tgsi_exec module.

Not actually tested, because softpipe is failing the test that caught
this bug due to unrelated issues.

Reviewed-by: Roland Scheidegger <sroland at vmware.com>

---

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

diff --git a/src/gallium/auxiliary/tgsi/tgsi_exec.c b/src/gallium/auxiliary/tgsi/tgsi_exec.c
index 6db1238..b614907 100644
--- a/src/gallium/auxiliary/tgsi/tgsi_exec.c
+++ b/src/gallium/auxiliary/tgsi/tgsi_exec.c
@@ -1610,6 +1610,9 @@ exec_kill_if(struct tgsi_exec_machine *mach,
             kilmask |= 1 << i;
    }
 
+   /* restrict to fragments currently executing */
+   kilmask &= mach->ExecMask;
+
    mach->Temps[TEMP_KILMASK_I].xyzw[TEMP_KILMASK_C].u[0] |= kilmask;
 }
 




More information about the mesa-commit mailing list