mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 17:48:10 +02:00
tgsi: remove unused tgsi_shader_info.images_store
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
8c227964f3
commit
4b9b6a0711
2 changed files with 0 additions and 6 deletions
|
|
@ -388,11 +388,6 @@ scan_instruction(struct tgsi_shader_info *info,
|
|||
else
|
||||
info->msaa_images_declared |= 1 << dst->Register.Index;
|
||||
}
|
||||
|
||||
if (dst->Register.Indirect)
|
||||
info->images_store = info->images_declared;
|
||||
else
|
||||
info->images_store |= 1 << dst->Register.Index;
|
||||
} else if (dst->Register.File == TGSI_FILE_BUFFER) {
|
||||
if (dst->Register.Indirect)
|
||||
info->shader_buffers_store = info->shader_buffers_declared;
|
||||
|
|
|
|||
|
|
@ -115,7 +115,6 @@ struct tgsi_shader_info
|
|||
* Bitmask indicating which declared image is a buffer.
|
||||
*/
|
||||
unsigned images_buffers;
|
||||
unsigned images_store; /**< bitmask of images using stores */
|
||||
unsigned images_atomic; /**< bitmask of images using atomics */
|
||||
unsigned shader_buffers_declared; /**< bitmask of declared shader buffers */
|
||||
unsigned shader_buffers_load; /**< bitmask of shader buffers using loads */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue