Searched refs:a_first (Results 1 – 1 of 1) sorted by relevance
1673 auto a_first = a_at_end ? std::make_pair(0u, 0u) : a_it->first; in validate_interface_between_stages() local1676 if (b_at_end || ((!a_at_end) && (a_first < b_first))) { in validate_interface_between_stages()1679 … "%s writes to output location %u.%u which is not consumed by %s", producer_name, a_first.first, in validate_interface_between_stages()1680 a_first.second, consumer_name)) { in validate_interface_between_stages()1684 } else if (a_at_end || a_first > b_first) { in validate_interface_between_stages()1698 a_first.first, a_first.second, in validate_interface_between_stages()1835 auto a_first = a_at_end ? 0 : it_a->first; in validate_vi_against_vs_inputs() local1837 if (!a_at_end && (b_at_end || a_first < b_first)) { in validate_vi_against_vs_inputs()1840 "Vertex attribute at location %d not consumed by VS", a_first)) { in validate_vi_against_vs_inputs()1844 } else if (!b_at_end && (a_at_end || b_first < a_first)) { in validate_vi_against_vs_inputs()[all …]