diff options
author | Timothy Arceri <[email protected]> | 2018-02-23 13:46:27 +1100 |
---|---|---|
committer | Timothy Arceri <[email protected]> | 2018-02-26 11:43:47 +1100 |
commit | 1a757c9c9780fdc3ac9b8ab7f486ca4cd31e20d8 (patch) | |
tree | 1d99d97db38dcc92c4457bb0516424d970379f3b /src/gallium | |
parent | 9f7c94084080f2fca15d1c282a827bffd3f3bd9e (diff) |
gallium/tgsi: remove is_msaa_sampler array from tgsi_shader_info
Seems to have not been used since 16be87c90429
Reviewed-by: Marek Olšák <[email protected]>
Reviewed-by: Samuel Pitoiset <[email protected]>
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/auxiliary/tgsi/tgsi_scan.c | 6 | ||||
-rw-r--r-- | src/gallium/auxiliary/tgsi/tgsi_scan.h | 1 |
2 files changed, 0 insertions, 7 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_scan.c b/src/gallium/auxiliary/tgsi/tgsi_scan.c index 989c57ebeed..c35eff25ba8 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_scan.c +++ b/src/gallium/auxiliary/tgsi/tgsi_scan.c @@ -267,7 +267,6 @@ scan_src_operand(struct tgsi_shader_info *info, const unsigned index = src->Register.Index; assert(fullinst->Instruction.Texture); - assert(index < ARRAY_SIZE(info->is_msaa_sampler)); assert(index < PIPE_MAX_SAMPLERS); if (is_texture_inst(fullinst->Instruction.Opcode)) { @@ -286,11 +285,6 @@ scan_src_operand(struct tgsi_shader_info *info, */ assert(info->sampler_targets[index] == target); } - /* MSAA samplers */ - if (target == TGSI_TEXTURE_2D_MSAA || - target == TGSI_TEXTURE_2D_ARRAY_MSAA) { - info->is_msaa_sampler[src->Register.Index] = TRUE; - } } } diff --git a/src/gallium/auxiliary/tgsi/tgsi_scan.h b/src/gallium/auxiliary/tgsi/tgsi_scan.h index 0f872b00220..1887ff342de 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_scan.h +++ b/src/gallium/auxiliary/tgsi/tgsi_scan.h @@ -132,7 +132,6 @@ struct tgsi_shader_info boolean writes_viewport_index; boolean writes_layer; boolean writes_memory; /**< contains stores or atomics to buffers or images */ - boolean is_msaa_sampler[PIPE_MAX_SAMPLERS]; boolean uses_doubles; /**< uses any of the double instructions */ boolean uses_derivatives; boolean uses_bindless_samplers; |