Lines Matching refs:descriptorCount
410 b.descriptorCount = tc.second.count;
419 // Inline uniform blocks are special because descriptorCount represents the size of that block.
427 b.descriptorCount = 4u; // For inline uniform blocks, this must be a multiple of 4 according to the spec.
451 count = ((b.descriptorType == vk::VK_DESCRIPTOR_TYPE_INLINE_UNIFORM_BLOCK_EXT) ? 1u : b.descriptorCount);
453 count = b.descriptorCount;
796 1u, // uint32_t descriptorCount;
804 // VUID-VkDescriptorSetLayoutBinding-descriptorType-02209 mandates descriptorCount to be a multiple of 4 when using inline
806 const auto descriptorCount = ((params.descriptorType == VK_DESCRIPTOR_TYPE_INLINE_UNIFORM_BLOCK) ? 4u : 1u);
812 descriptorCount, // uint32_t descriptorCount;
848 bindings.back().descriptorCount = 0u;
858 bindings.back().descriptorCount = normalValues.maxVariableDescriptorCount;