diff options
author | Timothy Arceri <[email protected]> | 2018-07-27 15:32:36 +1000 |
---|---|---|
committer | Timothy Arceri <[email protected]> | 2018-09-15 12:23:32 +1000 |
commit | e29f0ede757797bce38aa00bc706ae2224b66053 (patch) | |
tree | be4160b33057f71018b398c5db31f82819550cb9 /src/amd | |
parent | 914bd3014f6cb05f0893485487e69ca87e7c972c (diff) |
ac: fix get_image_coords() for radeonsi
Because this was setting image to true we would end up calling
si_load_image_desc() when we sould be calling
si_load_sampler_desc().
This fixes an assert() in Deus Ex: MD
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/amd')
-rw-r--r-- | src/amd/common/ac_nir_to_llvm.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/amd/common/ac_nir_to_llvm.c b/src/amd/common/ac_nir_to_llvm.c index 18644107eb4..a3f26ab46c9 100644 --- a/src/amd/common/ac_nir_to_llvm.c +++ b/src/amd/common/ac_nir_to_llvm.c @@ -2244,7 +2244,8 @@ static void get_image_coords(struct ac_nir_context *ctx, fmask_load_address[1], fmask_load_address[2], sample_index, - get_image_descriptor(ctx, instr, AC_DESC_FMASK, false)); + get_sampler_desc(ctx, nir_instr_as_deref(instr->src[0].ssa->parent_instr), + AC_DESC_FMASK, NULL, false, false)); } if (count == 1 && !gfx9_1d) { if (instr->src[1].ssa->num_components) |