Module: Mesa Branch: master Commit: dd98a979b6f565f0b0060403fbfad36005278802 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=dd98a979b6f565f0b0060403fbfad36005278802
Author: Brian Paul <[email protected]> Date: Fri Feb 5 10:18:25 2010 -0700 st/mesa: remove special-case cyl-wrap code Cylinder wrap mode works with perspective interpolation now. --- src/mesa/state_tracker/st_program.c | 10 +--------- 1 files changed, 1 insertions(+), 9 deletions(-) diff --git a/src/mesa/state_tracker/st_program.c b/src/mesa/state_tracker/st_program.c index e939ab3..21ad6fe 100644 --- a/src/mesa/state_tracker/st_program.c +++ b/src/mesa/state_tracker/st_program.c @@ -33,7 +33,6 @@ #include "main/imports.h" #include "main/mtypes.h" -#include "shader/prog_parameter.h" #include "shader/prog_print.h" #include "shader/programopt.h" @@ -368,14 +367,7 @@ st_translate_fragment_program(struct st_context *st, assert(attr >= FRAG_ATTRIB_TEX0); stfp->input_semantic_index[slot] = (attr - FRAG_ATTRIB_TEX0); stfp->input_semantic_name[slot] = TGSI_SEMANTIC_GENERIC; - - /* XXX this test is very temporary */ - if (stfp->Base.Base.InputFlags[0] & PROG_PARAM_BIT_CYL_WRAP) { - interpMode[slot] = TGSI_INTERPOLATE_LINEAR; - } - else { - interpMode[slot] = TGSI_INTERPOLATE_PERSPECTIVE; - } + interpMode[slot] = TGSI_INTERPOLATE_PERSPECTIVE; break; } } _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
