From aa929ea706e32f4acfe8b21eaebb2fe201afd580 Mon Sep 17 00:00:00 2001 From: Lionel Landwerlin Date: Wed, 22 Oct 2025 22:42:55 +0300 Subject: [PATCH] nir/lower_io: add missing levels intrinsics to get_io_index_src_number Signed-off-by: Lionel Landwerlin Fixes: c7ac46a1d8 ("nir/lower_io: add get_io_index_src_number support for image intrinsics") Reviewed-by: Alyssa Rosenzweig Part-of: --- 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 28e64ce5101..8daace91317 100644 --- a/src/compiler/nir/nir_lower_io.c +++ b/src/compiler/nir/nir_lower_io.c @@ -1069,6 +1069,7 @@ nir_get_io_index_src_number(const nir_intrinsic_instr *instr) IMG_CASE(atomic): IMG_CASE(atomic_swap): IMG_CASE(size): + IMG_CASE(levels): IMG_CASE(samples): IMG_CASE(texel_address): IMG_CASE(samples_identical):