[Mesa-dev] [PATCH] tgsi: fix Semantic.Name assignment in tgsi_transform_input_decl()

Brian Paul brianp at vmware.com
Tue Sep 30 09:31:59 PDT 2014


Assign the sem_name parameter, not TGSI_SEMANTIC_GENERIC.
Fixes polygon stipple regression.
---
 src/gallium/auxiliary/tgsi/tgsi_transform.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/gallium/auxiliary/tgsi/tgsi_transform.h b/src/gallium/auxiliary/tgsi/tgsi_transform.h
index bfcdd56..921aa90 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;
-- 
1.7.10.4



More information about the mesa-dev mailing list