From: Brian Paul Date: Tue, 30 Sep 2014 16:28:34 +0000 (-0600) Subject: tgsi: fix Semantic.Name assignment in tgsi_transform_input_decl() X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b12899d752ef04ab6ac55a5bee10532b5a4ad6ce;p=mesa.git tgsi: fix Semantic.Name assignment in tgsi_transform_input_decl() Assign the sem_name parameter, not TGSI_SEMANTIC_GENERIC. Fixes polygon stipple regression. Reviewed-by: Charmaine Lee --- diff --git a/src/gallium/auxiliary/tgsi/tgsi_transform.h b/src/gallium/auxiliary/tgsi/tgsi_transform.h index bfcdd56f356..921aa906527 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_transform.h +++ b/src/gallium/auxiliary/tgsi/tgsi_transform.h @@ -120,7 +120,7 @@ tgsi_transform_input_decl(struct tgsi_transform_context *ctx, decl.Declaration.File = TGSI_FILE_INPUT; decl.Declaration.Interpolate = 1; decl.Declaration.Semantic = 1; - decl.Semantic.Name = TGSI_SEMANTIC_GENERIC; + decl.Semantic.Name = sem_name; decl.Semantic.Index = sem_index; decl.Range.First = decl.Range.Last = index;