Module: Mesa Branch: master Commit: cf224014dd2d4e6651ae15d346e624065614e8fd URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=cf224014dd2d4e6651ae15d346e624065614e8fd
Author: Samuel Pitoiset <[email protected]> Date: Tue Jan 23 12:20:32 2018 +0100 radv: store the bind point when creating descriptors with templates Signed-off-by: Samuel Pitoiset <[email protected]> Reviewed-by: Bas Nieuwenhuizen <[email protected]> --- src/amd/vulkan/radv_descriptor_set.c | 1 + src/amd/vulkan/radv_private.h | 1 + 2 files changed, 2 insertions(+) diff --git a/src/amd/vulkan/radv_descriptor_set.c b/src/amd/vulkan/radv_descriptor_set.c index b1ef66308d..bbabfa9b27 100644 --- a/src/amd/vulkan/radv_descriptor_set.c +++ b/src/amd/vulkan/radv_descriptor_set.c @@ -847,6 +847,7 @@ VkResult radv_CreateDescriptorUpdateTemplateKHR(VkDevice _device, return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY); templ->entry_count = entry_count; + templ->bind_point = pCreateInfo->pipelineBindPoint; for (i = 0; i < entry_count; i++) { const VkDescriptorUpdateTemplateEntryKHR *entry = &pCreateInfo->pDescriptorUpdateEntries[i]; diff --git a/src/amd/vulkan/radv_private.h b/src/amd/vulkan/radv_private.h index 6239e33183..463be84f4a 100644 --- a/src/amd/vulkan/radv_private.h +++ b/src/amd/vulkan/radv_private.h @@ -720,6 +720,7 @@ struct radv_descriptor_update_template_entry { struct radv_descriptor_update_template { uint32_t entry_count; + VkPipelineBindPoint bind_point; struct radv_descriptor_update_template_entry entry[0]; }; _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
