Home | History | Annotate | Download | only in layers

Lines Matching refs:dstBinding

538     auto start_idx = p_layout_->GetGlobalStartIndexFromBinding(update->dstBinding) + update->dstArrayElement;
562 if (!p_layout_->HasBinding(update->dstBinding)) {
565 error_str << "DescriptorSet " << set_ << " does not have copy update dest binding of " << update->dstBinding << ".";
590 auto dst_start_idx = p_layout_->GetGlobalStartIndexFromBinding(update->dstBinding) + update->dstArrayElement;
595 error_str << "Attempting copy update to descriptorSet " << set_ << " binding#" << update->dstBinding
596 << " with offset index of " << p_layout_->GetGlobalStartIndexFromBinding(update->dstBinding)
607 auto dst_type = p_layout_->GetTypeFromBinding(update->dstBinding);
610 error_str << "Attempting copy update to descriptorSet " << set_ << " binding #" << update->dstBinding << " with type "
619 (!p_layout_->VerifyUpdateConsistency(update->dstBinding, update->dstArrayElement, update->descriptorCount, "copy update to",
643 auto dst_start_idx = p_layout_->GetGlobalStartIndexFromBinding(update->dstBinding) + update->dstArrayElement;
1134 if (!p_layout_->HasBinding(update->dstBinding)) {
1137 error_str << "DescriptorSet " << set_ << " does not have binding " << update->dstBinding << ".";
1142 auto start_idx = p_layout_->GetGlobalStartIndexFromBinding(update->dstBinding) + update->dstArrayElement;
1143 auto type = p_layout_->GetTypeFromBinding(update->dstBinding);
1147 error_str << "Attempting write update to descriptor set " << set_ << " binding #" << update->dstBinding << " with type "
1155 error_str << "Attempting write update to descriptor set " << set_ << " binding #" << update->dstBinding << " with "
1157 << " descriptors starting at binding offset of " << p_layout_->GetGlobalStartIndexFromBinding(update->dstBinding)
1164 if (!p_layout_->VerifyUpdateConsistency(update->dstBinding, update->dstArrayElement, update->descriptorCount, "write update to",
1172 error_str << "Write update to descriptor in set " << set_ << " binding #" << update->dstBinding