• Home
  • Raw
  • Download

Lines Matching refs:descriptorCount

98         descriptor_count_ += binding_info.descriptorCount;  in DescriptorSetLayoutDef()
99 if (binding_info.descriptorCount > 0) { in DescriptorSetLayoutDef()
105 binding_to_dyn_count[binding_num] = binding_info.descriptorCount; in DescriptorSetLayoutDef()
106 dynamic_descriptor_count_ += binding_info.descriptorCount; in DescriptorSetLayoutDef()
122 auto final_index = global_index + bindings_[i].descriptorCount; in DescriptorSetLayoutDef()
164 return bindings_[index].descriptorCount; in GetDescriptorCountFromIndex()
270 … if (binding.descriptorCount != rh_ds_layout_def->GetDescriptorCountFromBinding(binding.binding)) { in IsCompatible()
273 … << binding.descriptorCount << " but binding " << binding.binding << " for DescriptorSetLayout " in IsCompatible()
426 if ((binding_info.descriptorCount % 4) != 0) { in ValidateCreateInfo()
429 … "descriptorCount =(%" PRIu32 ") must be a multiple of 4", binding_info.descriptorCount); in ValidateCreateInfo()
431 … if (binding_info.descriptorCount > inline_uniform_block_props->maxInlineUniformBlockSize) { in ValidateCreateInfo()
435 binding_info.descriptorCount); in ValidateCreateInfo()
439 total_descriptors += binding_info.descriptorCount; in ValidateCreateInfo()
972 auto descriptors_remaining = update->descriptorCount; in PerformWriteUpdate()
988 if (update->descriptorCount) some_update_ = true; in PerformWriteUpdate()
1051 if ((src_start_idx + update->descriptorCount) > src_set->GetTotalDescriptorCount()) { in ValidateCopyUpdate()
1057 …update array offset of " << update->srcArrayElement << " and update of " << update->descriptorCount in ValidateCopyUpdate()
1063 if ((dst_start_idx + update->descriptorCount) > p_layout_->GetTotalDescriptorCount()) { in ValidateCopyUpdate()
1069 …update array offset of " << update->dstArrayElement << " and update of " << update->descriptorCount in ValidateCopyUpdate()
1089 …ut()->VerifyUpdateConsistency(update->srcBinding, update->srcArrayElement, update->descriptorCount, in ValidateCopyUpdate()
1091 …dateConsistency(update->dstBinding, update->dstArrayElement, update->descriptorCount, "copy update… in ValidateCopyUpdate()
1173 if ((update->descriptorCount % 4) != 0) { in ValidateCopyUpdate()
1177 << "descriptorCount " << update->descriptorCount << " not a multiple of 4"; in ValidateCopyUpdate()
1194 for (uint32_t di = 0; di < update->descriptorCount; ++di) { in PerformCopyUpdate()
1804 … desc_writes.reserve(desc_writes.size() + create_info.pDescriptorUpdateEntries[i].descriptorCount); in DecodedTemplateUpdate()
1805 for (uint32_t j = 0; j < create_info.pDescriptorUpdateEntries[i].descriptorCount; j++) { in DecodedTemplateUpdate()
1822 write_entry.descriptorCount = 1; in DecodedTemplateUpdate()
1849 inline_info->dataSize = create_info.pDescriptorUpdateEntries[i].descriptorCount; in DecodedTemplateUpdate()
1853 j = create_info.pDescriptorUpdateEntries[i].descriptorCount; in DecodedTemplateUpdate()
1962 if (update->descriptorCount > (descriptors_.size() - start_idx)) { in ValidateWriteUpdate()
1968 … << update->descriptorCount << " descriptors combined with update array element offset of " in ValidateWriteUpdate()
1982 if ((update->descriptorCount % 4) != 0) { in ValidateWriteUpdate()
1986 << "descriptorCount " << update->descriptorCount << " not a multiple of 4"; in ValidateWriteUpdate()
1991 if (!write_inline_info || write_inline_info->dataSize != update->descriptorCount) { in ValidateWriteUpdate()
2003 << "VkWriteDescriptorSet descriptorCount " << update->descriptorCount; in ValidateWriteUpdate()
2020 …dateConsistency(update->dstBinding, update->dstArrayElement, update->descriptorCount, "write updat… in ValidateWriteUpdate()
2184 for (uint32_t di = 0; di < update->descriptorCount; ++di) { in VerifyWriteUpdateContents()
2218 for (uint32_t di = 0; di < update->descriptorCount; ++di) { in VerifyWriteUpdateContents()
2237 for (uint32_t di = 0; di < update->descriptorCount; ++di) { in VerifyWriteUpdateContents()
2252 for (uint32_t di = 0; di < update->descriptorCount; ++di) { in VerifyWriteUpdateContents()
2285 for (uint32_t di = 0; di < update->descriptorCount; ++di) { in VerifyWriteUpdateContents()
2315 for (uint32_t di = 0; di < update->descriptorCount; ++di) { in VerifyCopyUpdateContents()
2334 for (uint32_t di = 0; di < update->descriptorCount; ++di) { in VerifyCopyUpdateContents()
2364 for (uint32_t di = 0; di < update->descriptorCount; ++di) { in VerifyCopyUpdateContents()
2380 for (uint32_t di = 0; di < update->descriptorCount; ++di) { in VerifyCopyUpdateContents()
2403 for (uint32_t di = 0; di < update->descriptorCount; ++di) { in VerifyCopyUpdateContents()
2437 ds_data->required_descriptors_by_type[typeIndex] += binding_layout->descriptorCount; in UpdateAllocateDescriptorSetsData()