anv: ignore inline uniform blocks in anv_CmdPushDescriptorSetKHR()
authorSamuel Iglesias Gonsálvez <siglesias@igalia.com>
Tue, 11 Jun 2019 08:44:47 +0000 (10:44 +0200)
committerSamuel Iglesias Gonsálvez <siglesias@igalia.com>
Tue, 11 Jun 2019 14:25:53 +0000 (16:25 +0200)
commitd0c52ff610421e8b27d534968d1b1d8c03c73da9
treed522066daf62fb46bb866f842d4538f7cb64c438
parent773ff93bc4b51c051f49c1c5198f56f5cea6665b
anv: ignore inline uniform blocks in anv_CmdPushDescriptorSetKHR()

According to the Vulkan spec, inline uniform blocks are not allowed
to be updated through vkCmdPushDescriptorSetKHR().

These are the spec quotes from "13.2.1. Descriptor Set Layout"
that are relevant for this case:

"VK_DESCRIPTOR_SET_LAYOUT_CREATE_PUSH_DESCRIPTOR_BIT_KHR specifies
that descriptor sets must not be allocated using this layout, and
descriptors are instead pushed by vkCmdPushDescriptorSetKHR."

"If flags contains
VK_DESCRIPTOR_SET_LAYOUT_CREATE_PUSH_DESCRIPTOR_BIT_KHR, then all
elements of pBindings must not have a descriptorType of
VK_DESCRIPTOR_TYPE_INLINE_UNIFORM_BLOCK_EXT".

There is no explicit mention in vkCmdPushDescriptorSetKHR() to forbid
this case but it is implied in the creation of the descriptor set
layout as aforementioned.

Signed-off-by: Samuel Iglesias Gonsálvez <siglesias@igalia.com>
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
src/intel/vulkan/anv_cmd_buffer.c