tgsi: remove unused tgsi_shader_info.indirect_files_written

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:32 +02:00
committed by Marge Bot
parent bfb7f85461
commit 674fbed75d
2 changed files with 0 additions and 2 deletions
-1
View File
@@ -317,7 +317,6 @@ scan_instruction(struct tgsi_shader_info *info,
1 << dst->Indirect.Swizzle, NULL);
info->indirect_files |= (1 << dst->Register.File);
info->indirect_files_written |= (1 << dst->Register.File);
}
if (dst->Register.Dimension && dst->Dimension.Indirect) {
-1
View File
@@ -130,7 +130,6 @@ struct tgsi_shader_info
* Bitmask indicating which register files are read / written with
* indirect addressing. The bits are (1 << TGSI_FILE_x).
*/
unsigned indirect_files_written;
unsigned dim_indirect_files; /**< shader resource indexing */
unsigned const_buffers_indirect; /**< const buffers using indirect addressing */