diff options
author | Brian Paul <[email protected]> | 2014-01-16 18:05:00 -0800 |
---|---|---|
committer | Brian Paul <[email protected]> | 2014-01-21 10:53:51 -0800 |
commit | 384fd64ab1533df8256600733a1fc8413af3514a (patch) | |
tree | 551e25f82a69a94a523e87fa2a2c17c01f6f5a82 /src/gallium/drivers/svga/svga_tgsi_decl_sm30.c | |
parent | f6bc7d658677cd7750575147a6c50d2b681b6e35 (diff) |
svga: rename color output variables
Just to be bit more readable.
Reviewed-by: José Fonseca <[email protected]>
Diffstat (limited to 'src/gallium/drivers/svga/svga_tgsi_decl_sm30.c')
-rw-r--r-- | src/gallium/drivers/svga/svga_tgsi_decl_sm30.c | 6 |
1 files changed, 3 insertions, 3 deletions
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, |