Module: Mesa
Branch: master
Commit: 9de062ef207c6062d1fabb70209f4bbc9dc4732d
URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=9de062ef207c6062d1fabb70209f4bbc9dc4732d

Author: Samuel Pitoiset <[email protected]>
Date:   Wed Sep 12 15:40:09 2018 +0200

radv: fix setting global locations for indirect descriptors

Indirect descriptors only need one entry, we don't have to
emit a location for every descriptors.

Fixes GPU hangs with new CTS:
dEQP-VK.binding_model.descriptorset_random.*

CC: 18.2 <[email protected]>
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Bas Nieuwenhuizen <[email protected]>

---

 src/amd/vulkan/radv_nir_to_llvm.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/src/amd/vulkan/radv_nir_to_llvm.c 
b/src/amd/vulkan/radv_nir_to_llvm.c
index f027eae809..968d96fc05 100644
--- a/src/amd/vulkan/radv_nir_to_llvm.c
+++ b/src/amd/vulkan/radv_nir_to_llvm.c
@@ -811,7 +811,6 @@ set_global_input_locs(struct radv_shader_context *ctx, 
gl_shader_stage stage,
                for (unsigned i = 0; i < num_sets; ++i) {
                        if ((ctx->shader_info->info.desc_set_used_mask & (1 << 
i)) &&
                            ctx->options->layout->set[i].layout->shader_stages 
& stage_mask) {
-                               set_loc_desc(ctx, i, user_sgpr_idx, true);
                                ctx->descriptor_sets[i] =
                                        ac_build_load_to_sgpr(&ctx->ac,
                                                              desc_sets,

_______________________________________________
mesa-commit mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/mesa-commit

Reply via email to