Module: Mesa Branch: main Commit: c77f8b4db02665b418b8c4e3d9d598882110ed49 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=c77f8b4db02665b418b8c4e3d9d598882110ed49
Author: Jesse Natalie <[email protected]> Date: Mon Nov 13 08:44:18 2023 -0800 microsoft/compiler: Stop lowering all I/O to temps Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/26156> --- src/gallium/drivers/d3d12/ci/d3d12-quick_shader.txt | 1 - src/microsoft/compiler/nir_to_dxil.c | 1 - 2 files changed, 2 deletions(-) diff --git a/src/gallium/drivers/d3d12/ci/d3d12-quick_shader.txt b/src/gallium/drivers/d3d12/ci/d3d12-quick_shader.txt index 5eab2fe9e9b..d94ed40825b 100644 --- a/src/gallium/drivers/d3d12/ci/d3d12-quick_shader.txt +++ b/src/gallium/drivers/d3d12/ci/d3d12-quick_shader.txt @@ -11,7 +11,6 @@ spec@arb_tessellation_shader@execution@tcs-output-unmatched,Crash spec@arb_tessellation_shader@execution@tcs-tes-levels-out-of-bounds-read,Crash spec@arb_tessellation_shader@execution@tcs-tes-levels-out-of-bounds-write,Crash spec@arb_tessellation_shader@execution@tcs-tes-max-in-out-patch-components,Crash -spec@arb_tessellation_shader@execution@tes-tes-levels-out-of-bounds-read,Crash spec@arb_tessellation_shader@execution@tes-primitiveid,Fail spec@arb_tessellation_shader@execution@variable-indexing@tcs-input-array-dvec4-index-rd,Crash spec@arb_tessellation_shader@execution@variable-indexing@tcs-output-array-dvec4-index-wr,Crash diff --git a/src/microsoft/compiler/nir_to_dxil.c b/src/microsoft/compiler/nir_to_dxil.c index 97537fea534..579ff51e20f 100644 --- a/src/microsoft/compiler/nir_to_dxil.c +++ b/src/microsoft/compiler/nir_to_dxil.c @@ -111,7 +111,6 @@ nir_options = { .lower_insert_word = true, .lower_insert_byte = true, .lower_all_io_to_elements = true, - .lower_all_io_to_temps = true, .lower_hadd = true, .lower_uadd_sat = true, .lower_usub_sat = true,
