From: Faith Ekstrand Date: Fri, 28 Jul 2023 15:53:28 +0000 (-0500) Subject: nir/builder: Allow tex helpers on image types X-Git-Tag: upstream/23.3.3~4927 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ee0942f7a6284570b3e5286d0943ce5e3429f53c;p=platform%2Fupstream%2Fmesa.git nir/builder: Allow tex helpers on image types Reviewed-by: Alyssa Rosenzweig Part-of: --- diff --git a/src/compiler/nir/nir_builder.c b/src/compiler/nir/nir_builder.c index 484d973..465bbfc 100644 --- a/src/compiler/nir/nir_builder.c +++ b/src/compiler/nir/nir_builder.c @@ -221,7 +221,8 @@ nir_build_tex_deref_instr(nir_builder *build, nir_texop op, const nir_tex_src *extra_srcs) { assert(texture != NULL); - assert(glsl_type_is_texture(texture->type) || + assert(glsl_type_is_image(texture->type) || + glsl_type_is_texture(texture->type) || glsl_type_is_sampler(texture->type)); const unsigned num_srcs = 1 + (sampler != NULL) + num_extra_srcs;