radv: remove unused parameter in radv_lower_io_to_mem()

Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Reviewed-By: Mike Blumenkrantz <michael.blumenkrantz@gmail.com>
Reviewed-by: Timur Kristóf <timur.kristof@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/18138>
This commit is contained in:
Samuel Pitoiset
2022-08-18 10:01:54 +02:00
committed by Marge Bot
parent f66d822d87
commit 2167a61611
3 changed files with 3 additions and 5 deletions

View File

@@ -4394,7 +4394,7 @@ radv_postprocess_nir(struct radv_pipeline *pipeline,
nir_move_load_input | nir_move_const_undef | nir_move_copies);
/* Lower I/O intrinsics to memory instructions. */
bool io_to_mem = radv_lower_io_to_mem(device, stage, pipeline_key);
bool io_to_mem = radv_lower_io_to_mem(device, stage);
bool lowered_ngg = pipeline_has_ngg && stage->stage == last_vgt_api_stage;
if (lowered_ngg)
radv_lower_ngg(device, stage, pipeline_key);