virgl: nir: Don't use deprecated NIR_PASS_V macro anymore

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/33686>
This commit is contained in:
Corentin Noël
2025-02-22 09:29:28 +01:00
committed by Marge Bot
parent 71e2ddcede
commit 8eae89f3f0
+1 -1
View File
@@ -721,7 +721,7 @@ static void *virgl_shader_encoder(struct pipe_context *ctx,
.lower_offset_filter = lower_gles_arrayshadow_offset_filter,
};
NIR_PASS_V(shader->ir.nir, nir_lower_tex, &lower_tex_options);
NIR_PASS(_, shader->ir.nir, nir_lower_tex, &lower_tex_options);
}
nir_shader *s = nir_shader_clone(NULL, shader->ir.nir);