mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-31 17:50:35 +01:00
Revert "lavapipe: Do not return in report_ray_intersection"
This reverts commit 466bbaf40f.
Acked-by: Mike Blumenkrantz <michael.blumenkrantz@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/31405>
This commit is contained in:
parent
1c119b1d95
commit
4cb8ecd47c
2 changed files with 4 additions and 3 deletions
|
|
@ -694,6 +694,3 @@ dEQP-VK.dynamic_rendering.primary_cmd_buff.suballocation.formats.r32g32_uint.inp
|
|||
dEQP-VK.glsl.texture_functions.query.texturequerylod.isampler1d_fragment,Fail
|
||||
dEQP-VK.glsl.texture_functions.query.texturequerylod.sampler1d_float_fragment,Fail
|
||||
dEQP-VK.glsl.texture_functions.query.texturequerylod.usampler1d_fragment,Fail
|
||||
|
||||
# Regression from a commit in 878ae970...e0efab52
|
||||
dEQP-VK.ray_tracing_pipeline.misc.OpTerminateRayKHR_IntersectionDynamically,Fail
|
||||
|
|
|
|||
|
|
@ -523,6 +523,10 @@ lvp_lower_isec_intrinsic(nir_builder *b, nir_intrinsic_instr *instr, void *data)
|
|||
|
||||
nir_def *terminate = nir_load_var(b, state->terminate);
|
||||
nir_store_var(b, state->terminate, nir_ior(b, terminate, prev_terminate), 0x1);
|
||||
|
||||
nir_push_if(b, terminate);
|
||||
nir_jump(b, nir_jump_return);
|
||||
nir_pop_if(b, NULL);
|
||||
}
|
||||
|
||||
nir_push_if(b, nir_load_var(b, state->accept));
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue