[Mesa-dev] [PATCH 4/8] radeonsi: wire up TGSI_SEMANTIC_BASEINSTANCE

Nicolai Hähnle nhaehnle at gmail.com
Mon Aug 8 15:55:49 UTC 2016


From: Nicolai Hähnle <nicolai.haehnle at amd.com>

---
 src/gallium/drivers/radeonsi/si_shader.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/src/gallium/drivers/radeonsi/si_shader.c b/src/gallium/drivers/radeonsi/si_shader.c
index 64c367e..2c00f56 100644
--- a/src/gallium/drivers/radeonsi/si_shader.c
+++ b/src/gallium/drivers/radeonsi/si_shader.c
@@ -1663,6 +1663,11 @@ static void declare_system_value(
 				     SI_PARAM_BASE_VERTEX);
 		break;
 
+	case TGSI_SEMANTIC_BASEINSTANCE:
+		value = LLVMGetParam(radeon_bld->main_fn,
+				     SI_PARAM_START_INSTANCE);
+		break;
+
 	case TGSI_SEMANTIC_INVOCATIONID:
 		if (ctx->type == PIPE_SHADER_TESS_CTRL)
 			value = unpack_param(ctx, SI_PARAM_REL_IDS, 8, 5);
-- 
2.7.4



More information about the mesa-dev mailing list