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_emit.h | |
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_emit.h')
-rw-r--r-- | src/gallium/drivers/svga/svga_tgsi_emit.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/gallium/drivers/svga/svga_tgsi_emit.h b/src/gallium/drivers/svga/svga_tgsi_emit.h index e36a9559ed8..28b8e694ddf 100644 --- a/src/gallium/drivers/svga/svga_tgsi_emit.h +++ b/src/gallium/drivers/svga/svga_tgsi_emit.h @@ -119,8 +119,9 @@ struct svga_shader_emitter /* shared output for depth and fog */ SVGA3dShaderDestToken vs_depth_fog; - SVGA3dShaderDestToken temp_col[PIPE_MAX_COLOR_BUFS]; - SVGA3dShaderDestToken true_col[PIPE_MAX_COLOR_BUFS]; + /* PS output colors */ + SVGA3dShaderDestToken temp_color_output[PIPE_MAX_COLOR_BUFS]; + SVGA3dShaderDestToken true_color_output[PIPE_MAX_COLOR_BUFS]; SVGA3dShaderDestToken temp_psiz; SVGA3dShaderDestToken true_psiz; |