Mesa (master): st_glsl_to_tgsi: translate interp mode for front/back color

Dave Airlie airlied at kemper.freedesktop.org
Sat Dec 31 14:05:37 UTC 2011


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

Author: Dave Airlie <airlied at redhat.com>
Date:   Sat Dec 31 13:48:19 2011 +0000

st_glsl_to_tgsi: translate interp mode for front/back color

this fixes a bunch of interpolation tests on softpipe at least.

Signed-off-by: Dave Airlie <airlied at redhat.com>

---

 src/mesa/state_tracker/st_program.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/mesa/state_tracker/st_program.c b/src/mesa/state_tracker/st_program.c
index b83c561..d62bfcd 100644
--- a/src/mesa/state_tracker/st_program.c
+++ b/src/mesa/state_tracker/st_program.c
@@ -530,12 +530,12 @@ st_translate_fragment_program(struct st_context *st,
             case FRAG_ATTRIB_COL0:
                input_semantic_name[slot] = TGSI_SEMANTIC_COLOR;
                input_semantic_index[slot] = 0;
-               interpMode[slot] = TGSI_INTERPOLATE_LINEAR;
+               interpMode[slot] = st_translate_interp(stfp->Base.InterpQualifier[attr]);
                break;
             case FRAG_ATTRIB_COL1:
                input_semantic_name[slot] = TGSI_SEMANTIC_COLOR;
                input_semantic_index[slot] = 1;
-               interpMode[slot] = TGSI_INTERPOLATE_LINEAR;
+               interpMode[slot] = st_translate_interp(stfp->Base.InterpQualifier[attr]);
                break;
             case FRAG_ATTRIB_FOGC:
                input_semantic_name[slot] = TGSI_SEMANTIC_FOG;




More information about the mesa-commit mailing list