diff --git a/src/panfrost/bifrost/bifrost_compile.c b/src/panfrost/bifrost/bifrost_compile.c index 5f96b5a3eb6..f2306c5bc68 100644 --- a/src/panfrost/bifrost/bifrost_compile.c +++ b/src/panfrost/bifrost/bifrost_compile.c @@ -1625,7 +1625,8 @@ bi_emit_texc(bi_builder *b, nir_tex_instr *instr) } /* Simple textures ops correspond to NIR tex or txl with LOD = 0 on 2D (or cube - * map, TODO) textures. Anything else needs a complete texture op. */ + * map, TODO) textures with sufficiently small immediate indices. Anything else + * needs a complete texture op. */ static bool bi_is_simple_tex(nir_tex_instr *instr) @@ -1639,6 +1640,10 @@ bi_is_simple_tex(nir_tex_instr *instr) return false; } + /* Indices need to fit in 3 bits */ + if (MAX2(instr->sampler_index, instr->texture_index) >= (1 << 3)) + return false; + int lod_idx = nir_tex_instr_src_index(instr, nir_tex_src_lod); if (lod_idx < 0) return true;