Module: Mesa Branch: master Commit: 0845d16976b41e0a151f96b900fb58a7f26d7774 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=0845d16976b41e0a151f96b900fb58a7f26d7774
Author: Maxence Le Doré <[email protected]> Date: Wed Feb 27 20:56:58 2013 +0100 gallivm: fix mis-matching AOS instruction emission Signed-off-by: José Fonseca <[email protected]> --- src/gallium/auxiliary/gallivm/lp_bld_tgsi_aos.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/gallium/auxiliary/gallivm/lp_bld_tgsi_aos.c b/src/gallium/auxiliary/gallivm/lp_bld_tgsi_aos.c index dbd9ccb..9a30cc8 100644 --- a/src/gallium/auxiliary/gallivm/lp_bld_tgsi_aos.c +++ b/src/gallium/auxiliary/gallivm/lp_bld_tgsi_aos.c @@ -536,7 +536,7 @@ lp_emit_instruction_aos( case TGSI_OPCODE_MIN: src0 = lp_build_emit_fetch(&bld->bld_base, inst, 0, LP_CHAN_ALL); src1 = lp_build_emit_fetch(&bld->bld_base, inst, 1, LP_CHAN_ALL); - dst0 = lp_build_max(&bld->bld_base.base, src0, src1); + dst0 = lp_build_min(&bld->bld_base.base, src0, src1); break; case TGSI_OPCODE_MAX: _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
