Module: Mesa Branch: master Commit: 18404047839920eff14d838b3b3403455fc925f3 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=18404047839920eff14d838b3b3403455fc925f3
Author: Icecream95 <[email protected]> Date: Tue Dec 22 23:03:19 2020 +1300 nir: Handle load_kernel_input in nir_get_io_offset_src Reviewed-by: Alyssa Rosenzweig <[email protected]> Reviewed-by: Jason Ekstrand <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/8264> --- src/compiler/nir/nir_lower_io.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/compiler/nir/nir_lower_io.c b/src/compiler/nir/nir_lower_io.c index c6e040efba7..b61e75d2bde 100644 --- a/src/compiler/nir/nir_lower_io.c +++ b/src/compiler/nir/nir_lower_io.c @@ -2415,6 +2415,7 @@ nir_get_io_offset_src(nir_intrinsic_instr *instr) case nir_intrinsic_load_output: case nir_intrinsic_load_shared: case nir_intrinsic_load_uniform: + case nir_intrinsic_load_kernel_input: case nir_intrinsic_load_global: case nir_intrinsic_load_global_constant: case nir_intrinsic_load_scratch: _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
