diff options
author | Dave Airlie <[email protected]> | 2015-07-17 04:43:09 +0100 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2015-07-25 01:06:41 +0100 |
commit | 4b6c1efb225777231459de54903484367d0b1ca1 (patch) | |
tree | bcde02e32866c763fd3a81d1e4e49505918e3713 /src/gallium/drivers/radeonsi/si_shader.h | |
parent | 730e8c4410d73bf9db2c1768af8cf6e98e24cc73 (diff) |
radeonsi: split out interpolation input selection
This is prep work for using it in the interpolation code
later.
Also add storage for the input interpolation mode so we
can pick it up later.
Reviewed-by: Marek Olšák <[email protected]>
Signed-off-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeonsi/si_shader.h')
-rw-r--r-- | src/gallium/drivers/radeonsi/si_shader.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/radeonsi/si_shader.h b/src/gallium/drivers/radeonsi/si_shader.h index b52714d5abe..82e9c915965 100644 --- a/src/gallium/drivers/radeonsi/si_shader.h +++ b/src/gallium/drivers/radeonsi/si_shader.h @@ -258,7 +258,7 @@ struct si_shader { unsigned nparam; unsigned vs_output_param_offset[PIPE_MAX_SHADER_OUTPUTS]; unsigned ps_input_param_offset[PIPE_MAX_SHADER_INPUTS]; - + unsigned ps_input_interpolate[PIPE_MAX_SHADER_INPUTS]; bool uses_instanceid; unsigned nr_pos_exports; unsigned nr_param_exports; |