From ee0942f7a6284570b3e5286d0943ce5e3429f53c Mon Sep 17 00:00:00 2001 From: Faith Ekstrand Date: Fri, 28 Jul 2023 10:53:28 -0500 Subject: [PATCH] nir/builder: Allow tex helpers on image types Reviewed-by: Alyssa Rosenzweig Part-of: --- src/compiler/nir/nir_builder.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; -- 2.7.4