From: Edward O'Callaghan Date: Sat, 29 Aug 2015 08:31:09 +0000 (+1000) Subject: r600g: Use TGSI parse results instead of manually exfiltrating X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0d19dc302f21d00b88ccb7b70e5a110d17ea4fdf;p=mesa.git r600g: Use TGSI parse results instead of manually exfiltrating This makes better use of the work that the TGSI API has done for us. Signed-off-by: Edward O'Callaghan Signed-off-by: Marek Olšák --- diff --git a/src/gallium/drivers/r600/r600_shader.c b/src/gallium/drivers/r600/r600_shader.c index a265fb81225..b7d7828a9c2 100644 --- a/src/gallium/drivers/r600/r600_shader.c +++ b/src/gallium/drivers/r600/r600_shader.c @@ -1839,7 +1839,7 @@ static int r600_shader_from_tgsi(struct r600_context *rctx, shader->indirect_files = ctx.info.indirect_files; indirect_gprs = ctx.info.indirect_files & ~(1 << TGSI_FILE_CONSTANT); tgsi_parse_init(&ctx.parse, tokens); - ctx.type = ctx.parse.FullHeader.Processor.Processor; + ctx.type = ctx.info.processor; shader->processor_type = ctx.type; ctx.bc->type = shader->processor_type;