diff options
author | Timothy Arceri <[email protected]> | 2018-07-27 15:08:28 +1000 |
---|---|---|
committer | Timothy Arceri <[email protected]> | 2018-07-28 08:57:03 +1000 |
commit | 77207e53806790e5edf3002a84d7105e646e22cb (patch) | |
tree | 3eb8f3912da0e08ff65ca9ddc8cc5113ebd96920 | |
parent | d89a123dfddf42f289b4c613c64ed8571c519cb0 (diff) |
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 <[email protected]>
-rw-r--r-- | src/amd/common/ac_nir_to_llvm.c | 2 |
1 files changed, 1 insertions, 1 deletions
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, |