From 215ceb37b9195ade291c4758abaf27fe61ae28cd Mon Sep 17 00:00:00 2001 From: Nicolai Hähnle Date: Wed, 12 Apr 2017 10:58:37 +0200 Subject: radeonsi: drop support for TGSI_SEMANTIC_VERTEXID_NOBASE MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It is unused. Reviewed-by: Marek Olšák --- src/gallium/drivers/radeonsi/si_shader.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/gallium/drivers/radeonsi/si_shader.c b/src/gallium/drivers/radeonsi/si_shader.c index 3622acb3181..a1dc4b34702 100644 --- a/src/gallium/drivers/radeonsi/si_shader.c +++ b/src/gallium/drivers/radeonsi/si_shader.c @@ -1395,8 +1395,9 @@ static void declare_system_value(struct si_shader_context *ctx, break; case TGSI_SEMANTIC_VERTEXID_NOBASE: - value = LLVMGetParam(ctx->main_fn, - ctx->param_vertex_id); + /* Unused. Clarify the meaning in indexed vs. non-indexed + * draws if this is ever used again. */ + assert(false); break; case TGSI_SEMANTIC_BASEVERTEX: -- cgit v1.2.3