Home | History | Annotate | Download | only in core_validation

Lines Matching refs:dstBinding

470     auto start_idx = p_layout_->GetGlobalStartIndexFromBinding(update->dstBinding) + update->dstArrayElement;
491 if (!p_layout_->HasBinding(update->dstBinding)) {
493 error_str << "DescriptorSet " << set_ << " does not have copy update dest binding of " << update->dstBinding << ".";
516 auto dst_start_idx = p_layout_->GetGlobalStartIndexFromBinding(update->dstBinding) + update->dstArrayElement;
520 error_str << "Attempting copy update to descriptorSet " << set_ << " binding#" << update->dstBinding
521 << " with offset index of " << p_layout_->GetGlobalStartIndexFromBinding(update->dstBinding)
529 auto dst_type = p_layout_->GetTypeFromBinding(update->dstBinding);
532 error_str << "Attempting copy update to descriptorSet " << set_ << " binding #" << update->dstBinding << " with type "
541 (!p_layout_->VerifyUpdateConsistency(update->dstBinding, update->dstArrayElement, update->descriptorCount, "copy update to",
565 auto dst_start_idx = p_layout_->GetGlobalStartIndexFromBinding(update->dstBinding) + update->dstArrayElement;
913 if (!p_layout_->HasBinding(update->dstBinding)) {
915 error_str << "DescriptorSet " << set_ << " does not have binding " << update->dstBinding << ".";
920 auto start_idx = p_layout_->GetGlobalStartIndexFromBinding(update->dstBinding) + update->dstArrayElement;
921 auto type = p_layout_->GetTypeFromBinding(update->dstBinding);
924 error_str << "Attempting write update to descriptor set " << set_ << " binding #" << update->dstBinding << " with type "
931 error_str << "Attempting write update to descriptor set " << set_ << " binding #" << update->dstBinding << " with "
934 << p_layout_->GetGlobalStartIndexFromBinding(update->dstBinding)
941 if (!p_layout_->VerifyUpdateConsistency(update->dstBinding, update->dstArrayElement, update->descriptorCount,
947 error_str << "Write update to descriptor in set " << set_ << " binding #" << update->dstBinding