diff options
author | Brian Paul <[email protected]> | 2014-09-30 10:28:34 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2014-09-30 12:08:49 -0600 |
commit | b12899d752ef04ab6ac55a5bee10532b5a4ad6ce (patch) | |
tree | 50dd703d956c29efc9e442d28e4b9356c6725408 | |
parent | 0fb1e6b7b41da22406d61d0a1fc7988384a45c8b (diff) |
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 <[email protected]>
-rw-r--r-- | src/gallium/auxiliary/tgsi/tgsi_transform.h | 2 |
1 files changed, 1 insertions, 1 deletions
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; |