diff --git a/.pick_status.json b/.pick_status.json index 6484c49e91f..84e519ad685 100644 --- a/.pick_status.json +++ b/.pick_status.json @@ -508,7 +508,7 @@ "description": "anv: skip acceleration structure in binding table emission", "nominated": true, "nomination_type": 1, - "resolution": 0, + "resolution": 1, "because_sha": "63e91148b7fe777b6ad7bfdb6b02d167c151dd55" }, { diff --git a/src/intel/vulkan/genX_cmd_buffer.c b/src/intel/vulkan/genX_cmd_buffer.c index 63f607af950..a256a4ded58 100644 --- a/src/intel/vulkan/genX_cmd_buffer.c +++ b/src/intel/vulkan/genX_cmd_buffer.c @@ -2807,6 +2807,7 @@ emit_binding_table(struct anv_cmd_buffer *cmd_buffer, const struct anv_descriptor *desc = &set->descriptors[binding->index]; switch (desc->type) { + case VK_DESCRIPTOR_TYPE_ACCELERATION_STRUCTURE_KHR: case VK_DESCRIPTOR_TYPE_SAMPLER: /* Nothing for us to do here */ continue;