lavapipe: call nir_lower_int64

otherwise the 64bit ops unsupported by llvmpipe will not be lowered

cc: mesa-stable

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/35743>
This commit is contained in:
Mike Blumenkrantz 2025-06-25 10:46:29 -04:00 committed by Marge Bot
parent 05ee3c6e0f
commit 6d2d4e9bbf

View file

@ -427,6 +427,7 @@ lvp_shader_lower(struct lvp_device *pdevice, nir_shader *nir, struct lvp_pipelin
.lower_txd = true,
};
NIR_PASS(_, nir, nir_lower_tex, &tex_options);
NIR_PASS(_, nir, nir_lower_int64);
NIR_PASS(_, nir, lvp_nir_lower_sparse_residency);