From 384fd64ab1533df8256600733a1fc8413af3514a Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Thu, 16 Jan 2014 18:05:00 -0800 Subject: svga: rename color output variables MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Just to be bit more readable. Reviewed-by: José Fonseca --- src/gallium/drivers/svga/svga_tgsi_decl_sm30.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/gallium/drivers/svga/svga_tgsi_decl_sm30.c') diff --git a/src/gallium/drivers/svga/svga_tgsi_decl_sm30.c b/src/gallium/drivers/svga/svga_tgsi_decl_sm30.c index 7faa275f33e..e0a30a5248e 100644 --- a/src/gallium/drivers/svga/svga_tgsi_decl_sm30.c +++ b/src/gallium/drivers/svga/svga_tgsi_decl_sm30.c @@ -332,9 +332,9 @@ ps30_output(struct svga_shader_emitter *emit, emit->output_map[idx] = dst_register( SVGA3DREG_TEMP, emit->nr_hw_temp++ ); - emit->temp_col[idx] = emit->output_map[idx]; - emit->true_col[idx] = dst_register( SVGA3DREG_COLOROUT, - semantic.Index ); + emit->temp_color_output[idx] = emit->output_map[idx]; + emit->true_color_output[idx] = dst_register(SVGA3DREG_COLOROUT, + semantic.Index); } else { emit->output_map[idx] = dst_register( SVGA3DREG_COLOROUT, -- cgit v1.2.3