broadcom/compiler: add a lowering for robust image access

Reviewed-by: Alejandro Piñeiro <apinheiro@igalia.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/18820>
This commit is contained in:
Iago Toral Quiroga
2022-09-26 10:47:19 +02:00
committed by Marge Bot
parent adcfd9bc2f
commit c7e022abfd
2 changed files with 120 additions and 1 deletions

View File

@@ -1161,7 +1161,8 @@ bool vir_opt_constant_alu(struct v3d_compile *c);
bool v3d_nir_lower_io(nir_shader *s, struct v3d_compile *c);
bool v3d_nir_lower_line_smooth(nir_shader *shader);
bool v3d_nir_lower_logic_ops(nir_shader *s, struct v3d_compile *c);
bool v3d_nir_lower_robust_buffer_access(nir_shader *shader, struct v3d_compile *c);
bool v3d_nir_lower_robust_buffer_access(nir_shader *s, struct v3d_compile *c);
bool v3d_nir_lower_robust_image_access(nir_shader *s, struct v3d_compile *c);
bool v3d_nir_lower_scratch(nir_shader *s);
bool v3d_nir_lower_txf_ms(nir_shader *s, struct v3d_compile *c);
bool v3d_nir_lower_image_load_store(nir_shader *s);