tgsi: remove unused tgsi_shader_info.array_max

Reviewed-by: Charmaine Lee <charmainel@vmware.com>
Reviewed-by: Christian Gmeiner <cgmeiner@igalia.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/24100>
This commit is contained in:
Thomas H.P. Andersen
2023-07-11 18:22:22 +02:00
committed by Marge Bot
parent 8807f0ec3e
commit 64ce4669a3
2 changed files with 0 additions and 2 deletions
-1
View File
@@ -627,7 +627,6 @@ scan_declaration(struct tgsi_shader_info *info,
default:
break;
}
info->array_max[file] = MAX2(info->array_max[file], array_id);
}
for (reg = fulldecl->Range.First; reg <= fulldecl->Range.Last; reg++) {
-1
View File
@@ -71,7 +71,6 @@ struct tgsi_shader_info
uint8_t input_array_first[PIPE_MAX_SHADER_INPUTS];
uint8_t output_array_first[PIPE_MAX_SHADER_OUTPUTS];
unsigned array_max[TGSI_FILE_COUNT]; /**< highest index array per register file */
unsigned immediate_count; /**< number of immediates declared */
unsigned num_instructions;