From: Marek Olšák Date: Wed, 21 Aug 2019 00:56:22 +0000 (-0400) Subject: radeonsi/gfx10: fix InstanceID for legacy VS+GS X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=28f44ee5339f8a6f822d84b7beaec9406d4279e6;p=mesa.git radeonsi/gfx10: fix InstanceID for legacy VS+GS Reviewed-by: Pierre-Eric Pelloux-Prayer --- diff --git a/src/gallium/drivers/radeonsi/si_state_shaders.c b/src/gallium/drivers/radeonsi/si_state_shaders.c index def27b1e685..15070055ada 100644 --- a/src/gallium/drivers/radeonsi/si_state_shaders.c +++ b/src/gallium/drivers/radeonsi/si_state_shaders.c @@ -878,10 +878,15 @@ static void si_shader_gs(struct si_screen *sscreen, struct si_shader *shader) unsigned es_type = shader->key.part.gs.es->type; unsigned es_vgpr_comp_cnt, gs_vgpr_comp_cnt; - if (es_type == PIPE_SHADER_VERTEX) - /* VGPR0-3: (VertexID, InstanceID / StepRate0, ...) */ - es_vgpr_comp_cnt = shader->info.uses_instanceid ? 1 : 0; - else if (es_type == PIPE_SHADER_TESS_EVAL) + if (es_type == PIPE_SHADER_VERTEX) { + /* GFX10: (VertexID, UserVGPR0, UserVGPR1, UserVGPR2 or InstanceID) + * GFX9: (VertexID, InstanceID / StepRate0, ...) + */ + if (sscreen->info.chip_class >= GFX10) + es_vgpr_comp_cnt = shader->info.uses_instanceid ? 3 : 0; + else + es_vgpr_comp_cnt = shader->info.uses_instanceid ? 1 : 0; + } else if (es_type == PIPE_SHADER_TESS_EVAL) es_vgpr_comp_cnt = shader->key.part.gs.es->info.uses_primid ? 3 : 2; else unreachable("invalid shader selector type");