From: Timothy Arceri Date: Fri, 27 Jul 2018 05:08:28 +0000 (+1000) Subject: ac: pass write param to get_sampler_desc() from get_image_descriptor() X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=77207e53806790e5edf3002a84d7105e646e22cb;p=mesa.git ac: pass write param to get_sampler_desc() from get_image_descriptor() Looks like a mistake from when the deref stuff landed. Fixes: 506a07e4e3a4 ("ac/nir: Add deref support to image intrinsics.") Reviewed-by: Bas Nieuwenhuizen --- diff --git a/src/amd/common/ac_nir_to_llvm.c b/src/amd/common/ac_nir_to_llvm.c index 44361be0d35..cffc980e51f 100644 --- a/src/amd/common/ac_nir_to_llvm.c +++ b/src/amd/common/ac_nir_to_llvm.c @@ -2201,7 +2201,7 @@ static LLVMValueRef get_image_descriptor(struct ac_nir_context *ctx, enum ac_descriptor_type desc_type, bool write) { - return get_sampler_desc(ctx, nir_instr_as_deref(instr->src[0].ssa->parent_instr), desc_type, NULL, true, true); + return get_sampler_desc(ctx, nir_instr_as_deref(instr->src[0].ssa->parent_instr), desc_type, NULL, true, write); } static void get_image_coords(struct ac_nir_context *ctx,