diff options
author | Marek Olšák <[email protected]> | 2019-08-06 21:07:21 -0400 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2019-08-19 17:23:38 -0400 |
commit | 21217efdfe094451c6252e9d4fa56f2de53f1bb6 (patch) | |
tree | 11f87010bc316a671229556ddba461bd0bfd40e6 /src/amd | |
parent | f52b9218ff8b869e7a0e2583a4f417a399a244cd (diff) |
ac/nir: set image=true when loading FMASK for images
Reviewed-by: Pierre-Eric Pelloux-Prayer <[email protected]>
Diffstat (limited to 'src/amd')
-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 b981d4cc897..ffac5ccea74 100644 --- a/src/amd/common/ac_nir_to_llvm.c +++ b/src/amd/common/ac_nir_to_llvm.c @@ -2441,7 +2441,7 @@ static void get_image_coords(struct ac_nir_context *ctx, fmask_load_address[2], sample_index, get_sampler_desc(ctx, nir_instr_as_deref(instr->src[0].ssa->parent_instr), - AC_DESC_FMASK, &instr->instr, false, false)); + AC_DESC_FMASK, &instr->instr, true, false)); } if (count == 1 && !gfx9_1d) { if (instr->src[1].ssa->num_components) |