gallium/tgsi: remove is_msaa_sampler array from tgsi_shader_info
[mesa.git] / src / gallium / auxiliary / tgsi / tgsi_scan.c
index 989c57ebeed51d9b1fa7cb0525096b3412dbb0d8..c35eff25ba8d80a1d6ef878d59abe7cc2463785c 100644 (file)
@@ -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;
-         }
       }
    }