diff --git a/src/gallium/drivers/r600/sfn/sfn_nir.cpp b/src/gallium/drivers/r600/sfn/sfn_nir.cpp index bf8588a6227..8b7ef194a2d 100644 --- a/src/gallium/drivers/r600/sfn/sfn_nir.cpp +++ b/src/gallium/drivers/r600/sfn/sfn_nir.cpp @@ -851,9 +851,10 @@ int r600_shader_from_nir(struct r600_context *rctx, NIR_PASS_V(sel->nir, r600_lower_shared_io); NIR_PASS_V(sel->nir, r600_nir_lower_atomics); - static const struct nir_lower_tex_options lower_tex_options = { - .lower_txp = ~0u, - }; + struct nir_lower_tex_options lower_tex_options; + lower_tex_options.lower_txp = ~0u; + lower_tex_options.lower_txf_offset = true; + NIR_PASS_V(sel->nir, nir_lower_tex, &lower_tex_options); NIR_PASS_V(sel->nir, r600::r600_nir_lower_txl_txf_array_or_cube); NIR_PASS_V(sel->nir, r600::r600_nir_lower_cube_to_2darray);