mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-01 03:48:06 +02:00
tgsi: remove unused tgsi_shader_info.indirect_files_read
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:
parent
606db8cc40
commit
bfb7f85461
2 changed files with 0 additions and 2 deletions
|
|
@ -152,7 +152,6 @@ scan_src_operand(struct tgsi_shader_info *info,
|
|||
/* check for indirect register reads */
|
||||
if (src->Register.Indirect) {
|
||||
info->indirect_files |= (1 << src->Register.File);
|
||||
info->indirect_files_read |= (1 << src->Register.File);
|
||||
|
||||
/* record indirect constant buffer indexing */
|
||||
if (src->Register.File == TGSI_FILE_CONSTANT) {
|
||||
|
|
|
|||
|
|
@ -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_read;
|
||||
unsigned indirect_files_written;
|
||||
unsigned dim_indirect_files; /**< shader resource indexing */
|
||||
unsigned const_buffers_indirect; /**< const buffers using indirect addressing */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue