From: Ben Skeggs Date: Tue, 1 Apr 2008 14:59:13 +0000 (-0600) Subject: handle IsPositionInvariant flag X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f3a62372bf155d14876f98b1a085841607bb344c;p=mesa.git handle IsPositionInvariant flag --- diff --git a/src/mesa/state_tracker/st_program.c b/src/mesa/state_tracker/st_program.c index 101a6a48afd..4d1ef1bf3d3 100644 --- a/src/mesa/state_tracker/st_program.c +++ b/src/mesa/state_tracker/st_program.c @@ -34,6 +34,7 @@ #include "main/imports.h" #include "main/mtypes.h" #include "shader/prog_print.h" +#include "shader/programopt.h" #include "pipe/p_context.h" #include "pipe/p_defines.h" @@ -95,6 +96,9 @@ st_translate_vertex_program(struct st_context *st, memset(&vs, 0, sizeof(vs)); + if (stvp->Base.IsPositionInvariant) + _mesa_insert_mvp_code(st->ctx, &stvp->Base); + /* * Determine number of inputs, the mappings between VERT_ATTRIB_x * and TGSI generic input indexes, plus input attrib semantic info.