| // Copyright 2023 The Dawn & Tint Authors |
| // |
| // Redistribution and use in source and binary forms, with or without |
| // modification, are permitted provided that the following conditions are met: |
| // |
| // 1. Redistributions of source code must retain the above copyright notice, this |
| // list of conditions and the following disclaimer. |
| // |
| // 2. Redistributions in binary form must reproduce the above copyright notice, |
| // this list of conditions and the following disclaimer in the documentation |
| // and/or other materials provided with the distribution. |
| // |
| // 3. Neither the name of the copyright holder nor the names of its |
| // contributors may be used to endorse or promote products derived from |
| // this software without specific prior written permission. |
| // |
| // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| // DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE |
| // FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| // DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
| // SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
| // CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| // OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| |
| //////////////////////////////////////////////////////////////////////////////// |
| // File generated by 'tools/src/cmd/gen' using the template: |
| // src/tint/lang/spirv/intrinsic/data.cc.tmpl |
| // |
| // To regenerate run: './tools/run gen' |
| // |
| // Do not modify this file directly |
| //////////////////////////////////////////////////////////////////////////////// |
| |
| #include <limits> |
| #include <string> |
| |
| #include "src/tint/lang/core/intrinsic/type_matchers.h" |
| #include "src/tint/lang/spirv/intrinsic/dialect.h" |
| #include "src/tint/lang/spirv/intrinsic/type_matchers.h" |
| #include "src/tint/utils/text/string_stream.h" |
| |
| namespace tint::spirv::intrinsic { |
| |
| using namespace tint::core::intrinsic; // NOLINT(build/namespaces) |
| |
| namespace { |
| |
| using ConstEvalFunctionIndex = tint::core::intrinsic::ConstEvalFunctionIndex; |
| using IntrinsicInfo = tint::core::intrinsic::IntrinsicInfo; |
| using MatcherIndicesIndex = tint::core::intrinsic::MatcherIndicesIndex; |
| using MatchState = tint::core::intrinsic::MatchState; |
| using Number = tint::core::intrinsic::Number; |
| using NumberMatcher = tint::core::intrinsic::NumberMatcher; |
| using NumberMatcherIndex = tint::core::intrinsic::NumberMatcherIndex; |
| using OverloadFlag = tint::core::intrinsic::OverloadFlag; |
| using OverloadFlags = tint::core::intrinsic::OverloadFlags; |
| using OverloadIndex = tint::core::intrinsic::OverloadIndex; |
| using OverloadInfo = tint::core::intrinsic::OverloadInfo; |
| using ParameterIndex = tint::core::intrinsic::ParameterIndex; |
| using ParameterInfo = tint::core::intrinsic::ParameterInfo; |
| using StringStream = tint::StringStream; |
| using TemplateIndex = tint::core::intrinsic::TemplateIndex; |
| using Type = tint::core::type::Type; |
| using TypeMatcher = tint::core::intrinsic::TypeMatcher; |
| using TypeMatcherIndex = tint::core::intrinsic::TypeMatcherIndex; |
| |
| template <size_t N> |
| using TemplateNumberMatcher = tint::core::intrinsic::TemplateNumberMatcher<N>; |
| |
| template <size_t N> |
| using TemplateTypeMatcher = tint::core::intrinsic::TemplateTypeMatcher<N>; |
| |
| // clang-format off |
| |
| /// TypeMatcher for 'type bool' |
| constexpr TypeMatcher kBoolMatcher { |
| /* match */ [](MatchState& state, const Type* ty) -> const Type* { |
| if (!MatchBool(state, ty)) { |
| return nullptr; |
| } |
| return BuildBool(state, ty); |
| }, |
| /* print */ []([[maybe_unused]] MatchState* state, StyledText& out) { |
| out << style::Type("bool"); |
| } |
| }; |
| |
| |
| /// TypeMatcher for 'type f32' |
| constexpr TypeMatcher kF32Matcher { |
| /* match */ [](MatchState& state, const Type* ty) -> const Type* { |
| if (!MatchF32(state, ty)) { |
| return nullptr; |
| } |
| return BuildF32(state, ty); |
| }, |
| /* print */ []([[maybe_unused]] MatchState* state, StyledText& out) { |
| out << style::Type("f32"); |
| } |
| }; |
| |
| |
| /// TypeMatcher for 'type f16' |
| constexpr TypeMatcher kF16Matcher { |
| /* match */ [](MatchState& state, const Type* ty) -> const Type* { |
| if (!MatchF16(state, ty)) { |
| return nullptr; |
| } |
| return BuildF16(state, ty); |
| }, |
| /* print */ []([[maybe_unused]] MatchState* state, StyledText& out) { |
| out << style::Type("f16"); |
| } |
| }; |
| |
| |
| /// TypeMatcher for 'type i32' |
| constexpr TypeMatcher kI32Matcher { |
| /* match */ [](MatchState& state, const Type* ty) -> const Type* { |
| if (!MatchI32(state, ty)) { |
| return nullptr; |
| } |
| return BuildI32(state, ty); |
| }, |
| /* print */ []([[maybe_unused]] MatchState* state, StyledText& out) { |
| out << style::Type("i32"); |
| } |
| }; |
| |
| |
| /// TypeMatcher for 'type u32' |
| constexpr TypeMatcher kU32Matcher { |
| /* match */ [](MatchState& state, const Type* ty) -> const Type* { |
| if (!MatchU32(state, ty)) { |
| return nullptr; |
| } |
| return BuildU32(state, ty); |
| }, |
| /* print */ []([[maybe_unused]] MatchState* state, StyledText& out) { |
| out << style::Type("u32"); |
| } |
| }; |
| |
| |
| /// TypeMatcher for 'type vec2' |
| constexpr TypeMatcher kVec2Matcher { |
| /* match */ [](MatchState& state, const Type* ty) -> const Type* { |
| const Type* T = nullptr; |
| if (!MatchVec2(state, ty, T)) { |
| return nullptr; |
| } |
| T = state.Type(T); |
| if (T == nullptr) { |
| return nullptr; |
| } |
| return BuildVec2(state, ty, T); |
| }, |
| /* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {StyledText T; |
| state->PrintType(T); |
| out << style::Type("vec2", "<", T, ">"); |
| } |
| }; |
| |
| |
| /// TypeMatcher for 'type vec3' |
| constexpr TypeMatcher kVec3Matcher { |
| /* match */ [](MatchState& state, const Type* ty) -> const Type* { |
| const Type* T = nullptr; |
| if (!MatchVec3(state, ty, T)) { |
| return nullptr; |
| } |
| T = state.Type(T); |
| if (T == nullptr) { |
| return nullptr; |
| } |
| return BuildVec3(state, ty, T); |
| }, |
| /* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {StyledText T; |
| state->PrintType(T); |
| out << style::Type("vec3", "<", T, ">"); |
| } |
| }; |
| |
| |
| /// TypeMatcher for 'type vec4' |
| constexpr TypeMatcher kVec4Matcher { |
| /* match */ [](MatchState& state, const Type* ty) -> const Type* { |
| const Type* T = nullptr; |
| if (!MatchVec4(state, ty, T)) { |
| return nullptr; |
| } |
| T = state.Type(T); |
| if (T == nullptr) { |
| return nullptr; |
| } |
| return BuildVec4(state, ty, T); |
| }, |
| /* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {StyledText T; |
| state->PrintType(T); |
| out << style::Type("vec4", "<", T, ">"); |
| } |
| }; |
| |
| |
| /// TypeMatcher for 'type mat2x2' |
| constexpr TypeMatcher kMat2X2Matcher { |
| /* match */ [](MatchState& state, const Type* ty) -> const Type* { |
| const Type* T = nullptr; |
| if (!MatchMat2X2(state, ty, T)) { |
| return nullptr; |
| } |
| T = state.Type(T); |
| if (T == nullptr) { |
| return nullptr; |
| } |
| return BuildMat2X2(state, ty, T); |
| }, |
| /* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {StyledText T; |
| state->PrintType(T); |
| out << style::Type("mat2x2", "<", T, ">"); |
| } |
| }; |
| |
| |
| /// TypeMatcher for 'type mat2x3' |
| constexpr TypeMatcher kMat2X3Matcher { |
| /* match */ [](MatchState& state, const Type* ty) -> const Type* { |
| const Type* T = nullptr; |
| if (!MatchMat2X3(state, ty, T)) { |
| return nullptr; |
| } |
| T = state.Type(T); |
| if (T == nullptr) { |
| return nullptr; |
| } |
| return BuildMat2X3(state, ty, T); |
| }, |
| /* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {StyledText T; |
| state->PrintType(T); |
| out << style::Type("mat2x3", "<", T, ">"); |
| } |
| }; |
| |
| |
| /// TypeMatcher for 'type mat2x4' |
| constexpr TypeMatcher kMat2X4Matcher { |
| /* match */ [](MatchState& state, const Type* ty) -> const Type* { |
| const Type* T = nullptr; |
| if (!MatchMat2X4(state, ty, T)) { |
| return nullptr; |
| } |
| T = state.Type(T); |
| if (T == nullptr) { |
| return nullptr; |
| } |
| return BuildMat2X4(state, ty, T); |
| }, |
| /* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {StyledText T; |
| state->PrintType(T); |
| out << style::Type("mat2x4", "<", T, ">"); |
| } |
| }; |
| |
| |
| /// TypeMatcher for 'type mat3x2' |
| constexpr TypeMatcher kMat3X2Matcher { |
| /* match */ [](MatchState& state, const Type* ty) -> const Type* { |
| const Type* T = nullptr; |
| if (!MatchMat3X2(state, ty, T)) { |
| return nullptr; |
| } |
| T = state.Type(T); |
| if (T == nullptr) { |
| return nullptr; |
| } |
| return BuildMat3X2(state, ty, T); |
| }, |
| /* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {StyledText T; |
| state->PrintType(T); |
| out << style::Type("mat3x2", "<", T, ">"); |
| } |
| }; |
| |
| |
| /// TypeMatcher for 'type mat3x3' |
| constexpr TypeMatcher kMat3X3Matcher { |
| /* match */ [](MatchState& state, const Type* ty) -> const Type* { |
| const Type* T = nullptr; |
| if (!MatchMat3X3(state, ty, T)) { |
| return nullptr; |
| } |
| T = state.Type(T); |
| if (T == nullptr) { |
| return nullptr; |
| } |
| return BuildMat3X3(state, ty, T); |
| }, |
| /* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {StyledText T; |
| state->PrintType(T); |
| out << style::Type("mat3x3", "<", T, ">"); |
| } |
| }; |
| |
| |
| /// TypeMatcher for 'type mat3x4' |
| constexpr TypeMatcher kMat3X4Matcher { |
| /* match */ [](MatchState& state, const Type* ty) -> const Type* { |
| const Type* T = nullptr; |
| if (!MatchMat3X4(state, ty, T)) { |
| return nullptr; |
| } |
| T = state.Type(T); |
| if (T == nullptr) { |
| return nullptr; |
| } |
| return BuildMat3X4(state, ty, T); |
| }, |
| /* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {StyledText T; |
| state->PrintType(T); |
| out << style::Type("mat3x4", "<", T, ">"); |
| } |
| }; |
| |
| |
| /// TypeMatcher for 'type mat4x2' |
| constexpr TypeMatcher kMat4X2Matcher { |
| /* match */ [](MatchState& state, const Type* ty) -> const Type* { |
| const Type* T = nullptr; |
| if (!MatchMat4X2(state, ty, T)) { |
| return nullptr; |
| } |
| T = state.Type(T); |
| if (T == nullptr) { |
| return nullptr; |
| } |
| return BuildMat4X2(state, ty, T); |
| }, |
| /* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {StyledText T; |
| state->PrintType(T); |
| out << style::Type("mat4x2", "<", T, ">"); |
| } |
| }; |
| |
| |
| /// TypeMatcher for 'type mat4x3' |
| constexpr TypeMatcher kMat4X3Matcher { |
| /* match */ [](MatchState& state, const Type* ty) -> const Type* { |
| const Type* T = nullptr; |
| if (!MatchMat4X3(state, ty, T)) { |
| return nullptr; |
| } |
| T = state.Type(T); |
| if (T == nullptr) { |
| return nullptr; |
| } |
| return BuildMat4X3(state, ty, T); |
| }, |
| /* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {StyledText T; |
| state->PrintType(T); |
| out << style::Type("mat4x3", "<", T, ">"); |
| } |
| }; |
| |
| |
| /// TypeMatcher for 'type mat4x4' |
| constexpr TypeMatcher kMat4X4Matcher { |
| /* match */ [](MatchState& state, const Type* ty) -> const Type* { |
| const Type* T = nullptr; |
| if (!MatchMat4X4(state, ty, T)) { |
| return nullptr; |
| } |
| T = state.Type(T); |
| if (T == nullptr) { |
| return nullptr; |
| } |
| return BuildMat4X4(state, ty, T); |
| }, |
| /* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {StyledText T; |
| state->PrintType(T); |
| out << style::Type("mat4x4", "<", T, ">"); |
| } |
| }; |
| |
| |
| /// TypeMatcher for 'type vec' |
| constexpr TypeMatcher kVecMatcher { |
| /* match */ [](MatchState& state, const Type* ty) -> const Type* { |
| Number N = Number::invalid; |
| const Type* T = nullptr; |
| if (!MatchVec(state, ty, N, T)) { |
| return nullptr; |
| } |
| N = state.Num(N); |
| if (!N.IsValid()) { |
| return nullptr; |
| } |
| T = state.Type(T); |
| if (T == nullptr) { |
| return nullptr; |
| } |
| return BuildVec(state, ty, N, T); |
| }, |
| /* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {StyledText N; |
| state->PrintNum(N);StyledText T; |
| state->PrintType(T); |
| out << style::Type("vec", N, "<", T, ">"); |
| } |
| }; |
| |
| |
| /// TypeMatcher for 'type mat' |
| constexpr TypeMatcher kMatMatcher { |
| /* match */ [](MatchState& state, const Type* ty) -> const Type* { |
| Number N = Number::invalid; |
| Number M = Number::invalid; |
| const Type* T = nullptr; |
| if (!MatchMat(state, ty, N, M, T)) { |
| return nullptr; |
| } |
| N = state.Num(N); |
| if (!N.IsValid()) { |
| return nullptr; |
| } |
| M = state.Num(M); |
| if (!M.IsValid()) { |
| return nullptr; |
| } |
| T = state.Type(T); |
| if (T == nullptr) { |
| return nullptr; |
| } |
| return BuildMat(state, ty, N, M, T); |
| }, |
| /* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {StyledText N; |
| state->PrintNum(N);StyledText M; |
| state->PrintNum(M);StyledText T; |
| state->PrintType(T); |
| out << style::Type("mat", N, "x", M, "<", T, ">"); |
| } |
| }; |
| |
| |
| /// TypeMatcher for 'type atomic' |
| constexpr TypeMatcher kAtomicMatcher { |
| /* match */ [](MatchState& state, const Type* ty) -> const Type* { |
| const Type* T = nullptr; |
| if (!MatchAtomic(state, ty, T)) { |
| return nullptr; |
| } |
| T = state.Type(T); |
| if (T == nullptr) { |
| return nullptr; |
| } |
| return BuildAtomic(state, ty, T); |
| }, |
| /* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {StyledText T; |
| state->PrintType(T); |
| out << style::Type("atomic", "<", T, ">"); |
| } |
| }; |
| |
| |
| /// TypeMatcher for 'type sampler' |
| constexpr TypeMatcher kSamplerMatcher { |
| /* match */ [](MatchState& state, const Type* ty) -> const Type* { |
| if (!MatchSampler(state, ty)) { |
| return nullptr; |
| } |
| return BuildSampler(state, ty); |
| }, |
| /* print */ []([[maybe_unused]] MatchState* state, StyledText& out) { |
| out << style::Type("sampler"); |
| } |
| }; |
| |
| |
| /// TypeMatcher for 'type sampler_comparison' |
| constexpr TypeMatcher kSamplerComparisonMatcher { |
| /* match */ [](MatchState& state, const Type* ty) -> const Type* { |
| if (!MatchSamplerComparison(state, ty)) { |
| return nullptr; |
| } |
| return BuildSamplerComparison(state, ty); |
| }, |
| /* print */ []([[maybe_unused]] MatchState* state, StyledText& out) { |
| out << style::Type("sampler_comparison"); |
| } |
| }; |
| |
| |
| /// TypeMatcher for 'type ptr' |
| constexpr TypeMatcher kPtrMatcher { |
| /* match */ [](MatchState& state, const Type* ty) -> const Type* { |
| Number S = Number::invalid; |
| const Type* T = nullptr; |
| Number A = Number::invalid; |
| if (!MatchPtr(state, ty, S, T, A)) { |
| return nullptr; |
| } |
| S = state.Num(S); |
| if (!S.IsValid()) { |
| return nullptr; |
| } |
| T = state.Type(T); |
| if (T == nullptr) { |
| return nullptr; |
| } |
| A = state.Num(A); |
| if (!A.IsValid()) { |
| return nullptr; |
| } |
| return BuildPtr(state, ty, S, T, A); |
| }, |
| /* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {StyledText S; |
| state->PrintNum(S);StyledText T; |
| state->PrintType(T);StyledText A; |
| state->PrintNum(A); |
| out << style::Type("ptr", "<", S, ", ", T, ", ", A, ">"); |
| } |
| }; |
| |
| |
| /// TypeMatcher for 'type struct_with_runtime_array' |
| constexpr TypeMatcher kStructWithRuntimeArrayMatcher { |
| /* match */ [](MatchState& state, const Type* ty) -> const Type* { |
| if (!MatchStructWithRuntimeArray(state, ty)) { |
| return nullptr; |
| } |
| return BuildStructWithRuntimeArray(state, ty); |
| }, |
| /* print */ []([[maybe_unused]] MatchState* state, StyledText& out) { |
| out << style::Type("struct_with_runtime_array"); |
| } |
| }; |
| |
| |
| /// TypeMatcher for 'type image' |
| constexpr TypeMatcher kImageMatcher { |
| /* match */ [](MatchState& state, const Type* ty) -> const Type* { |
| const Type* T = nullptr; |
| Number D = Number::invalid; |
| Number E = Number::invalid; |
| Number R = Number::invalid; |
| Number M = Number::invalid; |
| Number S = Number::invalid; |
| Number F = Number::invalid; |
| Number A = Number::invalid; |
| if (!MatchImage(state, ty, T, D, E, R, M, S, F, A)) { |
| return nullptr; |
| } |
| T = state.Type(T); |
| if (T == nullptr) { |
| return nullptr; |
| } |
| D = state.Num(D); |
| if (!D.IsValid()) { |
| return nullptr; |
| } |
| E = state.Num(E); |
| if (!E.IsValid()) { |
| return nullptr; |
| } |
| R = state.Num(R); |
| if (!R.IsValid()) { |
| return nullptr; |
| } |
| M = state.Num(M); |
| if (!M.IsValid()) { |
| return nullptr; |
| } |
| S = state.Num(S); |
| if (!S.IsValid()) { |
| return nullptr; |
| } |
| F = state.Num(F); |
| if (!F.IsValid()) { |
| return nullptr; |
| } |
| A = state.Num(A); |
| if (!A.IsValid()) { |
| return nullptr; |
| } |
| return BuildImage(state, ty, T, D, E, R, M, S, F, A); |
| }, |
| /* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {StyledText T; |
| state->PrintType(T);StyledText D; |
| state->PrintNum(D);StyledText E; |
| state->PrintNum(E);StyledText R; |
| state->PrintNum(R);StyledText M; |
| state->PrintNum(M);StyledText S; |
| state->PrintNum(S);StyledText F; |
| state->PrintNum(F);StyledText A; |
| state->PrintNum(A); |
| out << style::Type("image", "<", T, ", ", D, ", ", E, ", ", R, ", ", M, ", ", S, ", ", F, ", ", A, ">"); |
| } |
| }; |
| |
| |
| /// TypeMatcher for 'type sampled_image' |
| constexpr TypeMatcher kSampledImageMatcher { |
| /* match */ [](MatchState& state, const Type* ty) -> const Type* { |
| const Type* T = nullptr; |
| if (!MatchSampledImage(state, ty, T)) { |
| return nullptr; |
| } |
| T = state.Type(T); |
| if (T == nullptr) { |
| return nullptr; |
| } |
| return BuildSampledImage(state, ty, T); |
| }, |
| /* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {StyledText T; |
| state->PrintType(T); |
| out << style::Type("sampled_image", "<", T, ">"); |
| } |
| }; |
| |
| |
| /// TypeMatcher for 'type subgroup_matrix' |
| constexpr TypeMatcher kSubgroupMatrixMatcher { |
| /* match */ [](MatchState& state, const Type* ty) -> const Type* { |
| Number S = Number::invalid; |
| const Type* T = nullptr; |
| Number C = Number::invalid; |
| Number R = Number::invalid; |
| if (!MatchSubgroupMatrix(state, ty, S, T, C, R)) { |
| return nullptr; |
| } |
| S = state.Num(S); |
| if (!S.IsValid()) { |
| return nullptr; |
| } |
| T = state.Type(T); |
| if (T == nullptr) { |
| return nullptr; |
| } |
| C = state.Num(C); |
| if (!C.IsValid()) { |
| return nullptr; |
| } |
| R = state.Num(R); |
| if (!R.IsValid()) { |
| return nullptr; |
| } |
| return BuildSubgroupMatrix(state, ty, S, T, C, R); |
| }, |
| /* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {StyledText S; |
| state->PrintNum(S);StyledText T; |
| state->PrintType(T);StyledText C; |
| state->PrintNum(C);StyledText R; |
| state->PrintNum(R); |
| out << style::Type("subgroup_matrix", "<", S, ", ", T, ", ", C, ", ", R, ">"); |
| } |
| }; |
| |
| |
| /// TypeMatcher for 'match f32_f16' |
| constexpr TypeMatcher kF32F16Matcher { |
| /* match */ [](MatchState& state, const Type* ty) -> const Type* { |
| if (MatchF32(state, ty)) { |
| return BuildF32(state, ty); |
| } |
| if (MatchF16(state, ty)) { |
| return BuildF16(state, ty); |
| } |
| return nullptr; |
| }, |
| /* print */ [](MatchState*, StyledText& out) { |
| // Note: We pass nullptr to the Matcher.print() functions, as matchers do not support |
| // template arguments, nor can they match sub-types. As such, they have no use for the MatchState. |
| kF32Matcher.print(nullptr, out); out << style::Plain(" or "); kF16Matcher.print(nullptr, out);} |
| }; |
| |
| /// TypeMatcher for 'match iu32' |
| constexpr TypeMatcher kIu32Matcher { |
| /* match */ [](MatchState& state, const Type* ty) -> const Type* { |
| if (MatchI32(state, ty)) { |
| return BuildI32(state, ty); |
| } |
| if (MatchU32(state, ty)) { |
| return BuildU32(state, ty); |
| } |
| return nullptr; |
| }, |
| /* print */ [](MatchState*, StyledText& out) { |
| // Note: We pass nullptr to the Matcher.print() functions, as matchers do not support |
| // template arguments, nor can they match sub-types. As such, they have no use for the MatchState. |
| kI32Matcher.print(nullptr, out); out << style::Plain(" or "); kU32Matcher.print(nullptr, out);} |
| }; |
| |
| /// TypeMatcher for 'match fiu32' |
| constexpr TypeMatcher kFiu32Matcher { |
| /* match */ [](MatchState& state, const Type* ty) -> const Type* { |
| if (MatchF32(state, ty)) { |
| return BuildF32(state, ty); |
| } |
| if (MatchI32(state, ty)) { |
| return BuildI32(state, ty); |
| } |
| if (MatchU32(state, ty)) { |
| return BuildU32(state, ty); |
| } |
| return nullptr; |
| }, |
| /* print */ [](MatchState*, StyledText& out) { |
| // Note: We pass nullptr to the Matcher.print() functions, as matchers do not support |
| // template arguments, nor can they match sub-types. As such, they have no use for the MatchState. |
| kF32Matcher.print(nullptr, out); out << style::Plain(", "); kI32Matcher.print(nullptr, out); out << style::Plain(" or "); kU32Matcher.print(nullptr, out);} |
| }; |
| |
| /// TypeMatcher for 'match fiu32_f16' |
| constexpr TypeMatcher kFiu32F16Matcher { |
| /* match */ [](MatchState& state, const Type* ty) -> const Type* { |
| if (MatchF32(state, ty)) { |
| return BuildF32(state, ty); |
| } |
| if (MatchI32(state, ty)) { |
| return BuildI32(state, ty); |
| } |
| if (MatchU32(state, ty)) { |
| return BuildU32(state, ty); |
| } |
| if (MatchF16(state, ty)) { |
| return BuildF16(state, ty); |
| } |
| return nullptr; |
| }, |
| /* print */ [](MatchState*, StyledText& out) { |
| // Note: We pass nullptr to the Matcher.print() functions, as matchers do not support |
| // template arguments, nor can they match sub-types. As such, they have no use for the MatchState. |
| kF32Matcher.print(nullptr, out); out << style::Plain(", "); kI32Matcher.print(nullptr, out); out << style::Plain(", "); kU32Matcher.print(nullptr, out); out << style::Plain(" or "); kF16Matcher.print(nullptr, out);} |
| }; |
| |
| /// TypeMatcher for 'match scalar' |
| constexpr TypeMatcher kScalarMatcher { |
| /* match */ [](MatchState& state, const Type* ty) -> const Type* { |
| if (MatchF32(state, ty)) { |
| return BuildF32(state, ty); |
| } |
| if (MatchF16(state, ty)) { |
| return BuildF16(state, ty); |
| } |
| if (MatchI32(state, ty)) { |
| return BuildI32(state, ty); |
| } |
| if (MatchU32(state, ty)) { |
| return BuildU32(state, ty); |
| } |
| if (MatchBool(state, ty)) { |
| return BuildBool(state, ty); |
| } |
| return nullptr; |
| }, |
| /* print */ [](MatchState*, StyledText& out) { |
| // Note: We pass nullptr to the Matcher.print() functions, as matchers do not support |
| // template arguments, nor can they match sub-types. As such, they have no use for the MatchState. |
| kF32Matcher.print(nullptr, out); out << style::Plain(", "); kF16Matcher.print(nullptr, out); out << style::Plain(", "); kI32Matcher.print(nullptr, out); out << style::Plain(", "); kU32Matcher.print(nullptr, out); out << style::Plain(" or "); kBoolMatcher.print(nullptr, out);} |
| }; |
| |
| /// TypeMatcher for 'match samplers' |
| constexpr TypeMatcher kSamplersMatcher { |
| /* match */ [](MatchState& state, const Type* ty) -> const Type* { |
| if (MatchSampler(state, ty)) { |
| return BuildSampler(state, ty); |
| } |
| if (MatchSamplerComparison(state, ty)) { |
| return BuildSamplerComparison(state, ty); |
| } |
| return nullptr; |
| }, |
| /* print */ [](MatchState*, StyledText& out) { |
| // Note: We pass nullptr to the Matcher.print() functions, as matchers do not support |
| // template arguments, nor can they match sub-types. As such, they have no use for the MatchState. |
| kSamplerMatcher.print(nullptr, out); out << style::Plain(" or "); kSamplerComparisonMatcher.print(nullptr, out);} |
| }; |
| |
| /// TypeMatcher for 'match subgroup_matrix_elements' |
| constexpr TypeMatcher kSubgroupMatrixElementsMatcher { |
| /* match */ [](MatchState& state, const Type* ty) -> const Type* { |
| if (MatchF32(state, ty)) { |
| return BuildF32(state, ty); |
| } |
| if (MatchF16(state, ty)) { |
| return BuildF16(state, ty); |
| } |
| if (MatchU32(state, ty)) { |
| return BuildU32(state, ty); |
| } |
| if (MatchI32(state, ty)) { |
| return BuildI32(state, ty); |
| } |
| return nullptr; |
| }, |
| /* print */ [](MatchState*, StyledText& out) { |
| // Note: We pass nullptr to the Matcher.print() functions, as matchers do not support |
| // template arguments, nor can they match sub-types. As such, they have no use for the MatchState. |
| kF32Matcher.print(nullptr, out); out << style::Plain(", "); kF16Matcher.print(nullptr, out); out << style::Plain(", "); kU32Matcher.print(nullptr, out); out << style::Plain(" or "); kI32Matcher.print(nullptr, out);} |
| }; |
| |
| /// EnumMatcher for 'match storage' |
| constexpr NumberMatcher kStorageMatcher { |
| /* match */ [](MatchState&, Number number) -> Number { |
| if (number.IsAny() || number.Value() == static_cast<uint32_t>(core::AddressSpace::kStorage)) { |
| return Number(static_cast<uint32_t>(core::AddressSpace::kStorage)); |
| } |
| return Number::invalid; |
| }, |
| /* print */ [](MatchState*, StyledText& out) { |
| out<< style::Enum("storage"); |
| } |
| }; |
| |
| /// EnumMatcher for 'match workgroup_or_storage' |
| constexpr NumberMatcher kWorkgroupOrStorageMatcher { |
| /* match */ [](MatchState&, Number number) -> Number { |
| switch (static_cast<core::AddressSpace>(number.Value())) { |
| case core::AddressSpace::kWorkgroup: |
| case core::AddressSpace::kStorage: |
| return number; |
| default: |
| return Number::invalid; |
| } |
| }, |
| /* print */ [](MatchState*, StyledText& out) { |
| out<< style::Enum("workgroup")<< style::Plain(" or ") << style::Enum("storage"); |
| } |
| }; |
| |
| /// EnumMatcher for 'match function_private_workgroup_storage' |
| constexpr NumberMatcher kFunctionPrivateWorkgroupStorageMatcher { |
| /* match */ [](MatchState&, Number number) -> Number { |
| switch (static_cast<core::AddressSpace>(number.Value())) { |
| case core::AddressSpace::kFunction: |
| case core::AddressSpace::kPrivate: |
| case core::AddressSpace::kWorkgroup: |
| case core::AddressSpace::kStorage: |
| return number; |
| default: |
| return Number::invalid; |
| } |
| }, |
| /* print */ [](MatchState*, StyledText& out) { |
| out<< style::Enum("function")<< style::Plain(", ") << style::Enum("private")<< style::Plain(", ") << style::Enum("workgroup")<< style::Plain(" or ") << style::Enum("storage"); |
| } |
| }; |
| |
| /// EnumMatcher for 'match f32_texel_format' |
| constexpr NumberMatcher kF32TexelFormatMatcher { |
| /* match */ [](MatchState&, Number number) -> Number { |
| switch (static_cast<core::TexelFormat>(number.Value())) { |
| case core::TexelFormat::kR8Unorm: |
| case core::TexelFormat::kBgra8Unorm: |
| case core::TexelFormat::kRgba8Unorm: |
| case core::TexelFormat::kRgba8Snorm: |
| case core::TexelFormat::kRgba16Float: |
| case core::TexelFormat::kR32Float: |
| case core::TexelFormat::kRg32Float: |
| case core::TexelFormat::kRgba32Float: |
| return number; |
| default: |
| return Number::invalid; |
| } |
| }, |
| /* print */ [](MatchState*, StyledText& out) { |
| out<< style::Enum("r8unorm")<< style::Plain(", ") << style::Enum("bgra8unorm")<< style::Plain(", ") << style::Enum("rgba8unorm")<< style::Plain(", ") << style::Enum("rgba8snorm")<< style::Plain(", ") << style::Enum("rgba16float")<< style::Plain(", ") << style::Enum("r32float")<< style::Plain(", ") << style::Enum("rg32float")<< style::Plain(" or ") << style::Enum("rgba32float"); |
| } |
| }; |
| |
| /// EnumMatcher for 'match i32_texel_format' |
| constexpr NumberMatcher kI32TexelFormatMatcher { |
| /* match */ [](MatchState&, Number number) -> Number { |
| switch (static_cast<core::TexelFormat>(number.Value())) { |
| case core::TexelFormat::kRgba8Sint: |
| case core::TexelFormat::kRgba16Sint: |
| case core::TexelFormat::kR32Sint: |
| case core::TexelFormat::kRg32Sint: |
| case core::TexelFormat::kRgba32Sint: |
| return number; |
| default: |
| return Number::invalid; |
| } |
| }, |
| /* print */ [](MatchState*, StyledText& out) { |
| out<< style::Enum("rgba8sint")<< style::Plain(", ") << style::Enum("rgba16sint")<< style::Plain(", ") << style::Enum("r32sint")<< style::Plain(", ") << style::Enum("rg32sint")<< style::Plain(" or ") << style::Enum("rgba32sint"); |
| } |
| }; |
| |
| /// EnumMatcher for 'match u32_texel_format' |
| constexpr NumberMatcher kU32TexelFormatMatcher { |
| /* match */ [](MatchState&, Number number) -> Number { |
| switch (static_cast<core::TexelFormat>(number.Value())) { |
| case core::TexelFormat::kRgba8Uint: |
| case core::TexelFormat::kRgba16Uint: |
| case core::TexelFormat::kR32Uint: |
| case core::TexelFormat::kRg32Uint: |
| case core::TexelFormat::kRgba32Uint: |
| return number; |
| default: |
| return Number::invalid; |
| } |
| }, |
| /* print */ [](MatchState*, StyledText& out) { |
| out<< style::Enum("rgba8uint")<< style::Plain(", ") << style::Enum("rgba16uint")<< style::Plain(", ") << style::Enum("r32uint")<< style::Plain(", ") << style::Enum("rg32uint")<< style::Plain(" or ") << style::Enum("rgba32uint"); |
| } |
| }; |
| |
| /// EnumMatcher for 'match read_write' |
| constexpr NumberMatcher kReadWriteMatcher { |
| /* match */ [](MatchState&, Number number) -> Number { |
| if (number.IsAny() || number.Value() == static_cast<uint32_t>(core::Access::kReadWrite)) { |
| return Number(static_cast<uint32_t>(core::Access::kReadWrite)); |
| } |
| return Number::invalid; |
| }, |
| /* print */ [](MatchState*, StyledText& out) { |
| out<< style::Enum("read_write"); |
| } |
| }; |
| |
| /// EnumMatcher for 'match readable' |
| constexpr NumberMatcher kReadableMatcher { |
| /* match */ [](MatchState&, Number number) -> Number { |
| switch (static_cast<core::Access>(number.Value())) { |
| case core::Access::kRead: |
| case core::Access::kReadWrite: |
| return number; |
| default: |
| return Number::invalid; |
| } |
| }, |
| /* print */ [](MatchState*, StyledText& out) { |
| out<< style::Enum("read")<< style::Plain(" or ") << style::Enum("read_write"); |
| } |
| }; |
| |
| /// EnumMatcher for 'match writable' |
| constexpr NumberMatcher kWritableMatcher { |
| /* match */ [](MatchState&, Number number) -> Number { |
| switch (static_cast<core::Access>(number.Value())) { |
| case core::Access::kWrite: |
| case core::Access::kReadWrite: |
| return number; |
| default: |
| return Number::invalid; |
| } |
| }, |
| /* print */ [](MatchState*, StyledText& out) { |
| out<< style::Enum("write")<< style::Plain(" or ") << style::Enum("read_write"); |
| } |
| }; |
| |
| /// EnumMatcher for 'match dim_1d' |
| constexpr NumberMatcher kDim1DMatcher { |
| /* match */ [](MatchState&, Number number) -> Number { |
| if (number.IsAny() || number.Value() == static_cast<uint32_t>(spirv::type::Dim::kD1)) { |
| return Number(static_cast<uint32_t>(spirv::type::Dim::kD1)); |
| } |
| return Number::invalid; |
| }, |
| /* print */ [](MatchState*, StyledText& out) { |
| out<< style::Enum("d1"); |
| } |
| }; |
| |
| /// EnumMatcher for 'match dim_2d' |
| constexpr NumberMatcher kDim2DMatcher { |
| /* match */ [](MatchState&, Number number) -> Number { |
| if (number.IsAny() || number.Value() == static_cast<uint32_t>(spirv::type::Dim::kD2)) { |
| return Number(static_cast<uint32_t>(spirv::type::Dim::kD2)); |
| } |
| return Number::invalid; |
| }, |
| /* print */ [](MatchState*, StyledText& out) { |
| out<< style::Enum("d2"); |
| } |
| }; |
| |
| /// EnumMatcher for 'match dim_3d' |
| constexpr NumberMatcher kDim3DMatcher { |
| /* match */ [](MatchState&, Number number) -> Number { |
| if (number.IsAny() || number.Value() == static_cast<uint32_t>(spirv::type::Dim::kD3)) { |
| return Number(static_cast<uint32_t>(spirv::type::Dim::kD3)); |
| } |
| return Number::invalid; |
| }, |
| /* print */ [](MatchState*, StyledText& out) { |
| out<< style::Enum("d3"); |
| } |
| }; |
| |
| /// EnumMatcher for 'match dim_cube' |
| constexpr NumberMatcher kDimCubeMatcher { |
| /* match */ [](MatchState&, Number number) -> Number { |
| if (number.IsAny() || number.Value() == static_cast<uint32_t>(spirv::type::Dim::kCube)) { |
| return Number(static_cast<uint32_t>(spirv::type::Dim::kCube)); |
| } |
| return Number::invalid; |
| }, |
| /* print */ [](MatchState*, StyledText& out) { |
| out<< style::Enum("Cube"); |
| } |
| }; |
| |
| /// EnumMatcher for 'match dim_subpass' |
| constexpr NumberMatcher kDimSubpassMatcher { |
| /* match */ [](MatchState&, Number number) -> Number { |
| if (number.IsAny() || number.Value() == static_cast<uint32_t>(spirv::type::Dim::kSubpassData)) { |
| return Number(static_cast<uint32_t>(spirv::type::Dim::kSubpassData)); |
| } |
| return Number::invalid; |
| }, |
| /* print */ [](MatchState*, StyledText& out) { |
| out<< style::Enum("SubpassData"); |
| } |
| }; |
| |
| /// EnumMatcher for 'match dim_1d_2d_3d_or_cube' |
| constexpr NumberMatcher kDim1D2D3DOrCubeMatcher { |
| /* match */ [](MatchState&, Number number) -> Number { |
| switch (static_cast<spirv::type::Dim>(number.Value())) { |
| case spirv::type::Dim::kD1: |
| case spirv::type::Dim::kD2: |
| case spirv::type::Dim::kD3: |
| case spirv::type::Dim::kCube: |
| return number; |
| default: |
| return Number::invalid; |
| } |
| }, |
| /* print */ [](MatchState*, StyledText& out) { |
| out<< style::Enum("d1")<< style::Plain(", ") << style::Enum("d2")<< style::Plain(", ") << style::Enum("d3")<< style::Plain(" or ") << style::Enum("Cube"); |
| } |
| }; |
| |
| /// EnumMatcher for 'match single_sampled' |
| constexpr NumberMatcher kSingleSampledMatcher { |
| /* match */ [](MatchState&, Number number) -> Number { |
| if (number.IsAny() || number.Value() == static_cast<uint32_t>(spirv::type::Multisampled::kSingleSampled)) { |
| return Number(static_cast<uint32_t>(spirv::type::Multisampled::kSingleSampled)); |
| } |
| return Number::invalid; |
| }, |
| /* print */ [](MatchState*, StyledText& out) { |
| out<< style::Enum("SingleSampled"); |
| } |
| }; |
| |
| /// EnumMatcher for 'match multi_sampled' |
| constexpr NumberMatcher kMultiSampledMatcher { |
| /* match */ [](MatchState&, Number number) -> Number { |
| if (number.IsAny() || number.Value() == static_cast<uint32_t>(spirv::type::Multisampled::kMultisampled)) { |
| return Number(static_cast<uint32_t>(spirv::type::Multisampled::kMultisampled)); |
| } |
| return Number::invalid; |
| }, |
| /* print */ [](MatchState*, StyledText& out) { |
| out<< style::Enum("Multisampled"); |
| } |
| }; |
| |
| /// EnumMatcher for 'match is_depth' |
| constexpr NumberMatcher kIsDepthMatcher { |
| /* match */ [](MatchState&, Number number) -> Number { |
| if (number.IsAny() || number.Value() == static_cast<uint32_t>(spirv::type::Depth::kDepth)) { |
| return Number(static_cast<uint32_t>(spirv::type::Depth::kDepth)); |
| } |
| return Number::invalid; |
| }, |
| /* print */ [](MatchState*, StyledText& out) { |
| out<< style::Enum("Depth"); |
| } |
| }; |
| |
| /// EnumMatcher for 'match non_depth' |
| constexpr NumberMatcher kNonDepthMatcher { |
| /* match */ [](MatchState&, Number number) -> Number { |
| switch (static_cast<spirv::type::Depth>(number.Value())) { |
| case spirv::type::Depth::kNotDepth: |
| case spirv::type::Depth::kUnknown: |
| return number; |
| default: |
| return Number::invalid; |
| } |
| }, |
| /* print */ [](MatchState*, StyledText& out) { |
| out<< style::Enum("NotDepth")<< style::Plain(" or ") << style::Enum("Unknown"); |
| } |
| }; |
| |
| /// EnumMatcher for 'match is_arrayed' |
| constexpr NumberMatcher kIsArrayedMatcher { |
| /* match */ [](MatchState&, Number number) -> Number { |
| if (number.IsAny() || number.Value() == static_cast<uint32_t>(spirv::type::Arrayed::kArrayed)) { |
| return Number(static_cast<uint32_t>(spirv::type::Arrayed::kArrayed)); |
| } |
| return Number::invalid; |
| }, |
| /* print */ [](MatchState*, StyledText& out) { |
| out<< style::Enum("Arrayed"); |
| } |
| }; |
| |
| /// EnumMatcher for 'match non_arrayed' |
| constexpr NumberMatcher kNonArrayedMatcher { |
| /* match */ [](MatchState&, Number number) -> Number { |
| if (number.IsAny() || number.Value() == static_cast<uint32_t>(spirv::type::Arrayed::kNonArrayed)) { |
| return Number(static_cast<uint32_t>(spirv::type::Arrayed::kNonArrayed)); |
| } |
| return Number::invalid; |
| }, |
| /* print */ [](MatchState*, StyledText& out) { |
| out<< style::Enum("NonArrayed"); |
| } |
| }; |
| |
| /// EnumMatcher for 'match sampling_compatible' |
| constexpr NumberMatcher kSamplingCompatibleMatcher { |
| /* match */ [](MatchState&, Number number) -> Number { |
| if (number.IsAny() || number.Value() == static_cast<uint32_t>(spirv::type::Sampled::kSamplingCompatible)) { |
| return Number(static_cast<uint32_t>(spirv::type::Sampled::kSamplingCompatible)); |
| } |
| return Number::invalid; |
| }, |
| /* print */ [](MatchState*, StyledText& out) { |
| out<< style::Enum("SamplingCompatible"); |
| } |
| }; |
| |
| /// EnumMatcher for 'match rw_op_compatible' |
| constexpr NumberMatcher kRwOpCompatibleMatcher { |
| /* match */ [](MatchState&, Number number) -> Number { |
| if (number.IsAny() || number.Value() == static_cast<uint32_t>(spirv::type::Sampled::kReadWriteOpCompatible)) { |
| return Number(static_cast<uint32_t>(spirv::type::Sampled::kReadWriteOpCompatible)); |
| } |
| return Number::invalid; |
| }, |
| /* print */ [](MatchState*, StyledText& out) { |
| out<< style::Enum("ReadWriteOpCompatible"); |
| } |
| }; |
| |
| /// EnumMatcher for 'match subgroup_matrix_kind_left' |
| constexpr NumberMatcher kSubgroupMatrixKindLeftMatcher { |
| /* match */ [](MatchState&, Number number) -> Number { |
| if (number.IsAny() || number.Value() == static_cast<uint32_t>(core::SubgroupMatrixKind::kLeft)) { |
| return Number(static_cast<uint32_t>(core::SubgroupMatrixKind::kLeft)); |
| } |
| return Number::invalid; |
| }, |
| /* print */ [](MatchState*, StyledText& out) { |
| out<< style::Enum("left"); |
| } |
| }; |
| |
| /// EnumMatcher for 'match subgroup_matrix_kind_right' |
| constexpr NumberMatcher kSubgroupMatrixKindRightMatcher { |
| /* match */ [](MatchState&, Number number) -> Number { |
| if (number.IsAny() || number.Value() == static_cast<uint32_t>(core::SubgroupMatrixKind::kRight)) { |
| return Number(static_cast<uint32_t>(core::SubgroupMatrixKind::kRight)); |
| } |
| return Number::invalid; |
| }, |
| /* print */ [](MatchState*, StyledText& out) { |
| out<< style::Enum("right"); |
| } |
| }; |
| |
| /// EnumMatcher for 'match subgroup_matrix_kind_result' |
| constexpr NumberMatcher kSubgroupMatrixKindResultMatcher { |
| /* match */ [](MatchState&, Number number) -> Number { |
| if (number.IsAny() || number.Value() == static_cast<uint32_t>(core::SubgroupMatrixKind::kResult)) { |
| return Number(static_cast<uint32_t>(core::SubgroupMatrixKind::kResult)); |
| } |
| return Number::invalid; |
| }, |
| /* print */ [](MatchState*, StyledText& out) { |
| out<< style::Enum("result"); |
| } |
| }; |
| |
| /// Type and number matchers |
| |
| /// The template types, types, and type matchers |
| constexpr TypeMatcher kTypeMatchers[] = { |
| /* [0] */ TemplateTypeMatcher<0>::matcher, |
| /* [1] */ TemplateTypeMatcher<1>::matcher, |
| /* [2] */ TemplateTypeMatcher<2>::matcher, |
| /* [3] */ TemplateTypeMatcher<3>::matcher, |
| /* [4] */ TemplateTypeMatcher<4>::matcher, |
| /* [5] */ TemplateTypeMatcher<5>::matcher, |
| /* [6] */ TemplateTypeMatcher<6>::matcher, |
| /* [7] */ kBoolMatcher, |
| /* [8] */ kF32Matcher, |
| /* [9] */ kF16Matcher, |
| /* [10] */ kI32Matcher, |
| /* [11] */ kU32Matcher, |
| /* [12] */ kVec2Matcher, |
| /* [13] */ kVec3Matcher, |
| /* [14] */ kVec4Matcher, |
| /* [15] */ kMat2X2Matcher, |
| /* [16] */ kMat2X3Matcher, |
| /* [17] */ kMat2X4Matcher, |
| /* [18] */ kMat3X2Matcher, |
| /* [19] */ kMat3X3Matcher, |
| /* [20] */ kMat3X4Matcher, |
| /* [21] */ kMat4X2Matcher, |
| /* [22] */ kMat4X3Matcher, |
| /* [23] */ kMat4X4Matcher, |
| /* [24] */ kVecMatcher, |
| /* [25] */ kMatMatcher, |
| /* [26] */ kAtomicMatcher, |
| /* [27] */ kSamplerMatcher, |
| /* [28] */ kSamplerComparisonMatcher, |
| /* [29] */ kPtrMatcher, |
| /* [30] */ kStructWithRuntimeArrayMatcher, |
| /* [31] */ kImageMatcher, |
| /* [32] */ kSampledImageMatcher, |
| /* [33] */ kSubgroupMatrixMatcher, |
| /* [34] */ kF32F16Matcher, |
| /* [35] */ kIu32Matcher, |
| /* [36] */ kFiu32Matcher, |
| /* [37] */ kFiu32F16Matcher, |
| /* [38] */ kScalarMatcher, |
| /* [39] */ kSamplersMatcher, |
| /* [40] */ kSubgroupMatrixElementsMatcher, |
| }; |
| |
| /// The template numbers, and number matchers |
| constexpr NumberMatcher kNumberMatchers[] = { |
| /* [0] */ TemplateNumberMatcher<0>::matcher, |
| /* [1] */ TemplateNumberMatcher<1>::matcher, |
| /* [2] */ TemplateNumberMatcher<2>::matcher, |
| /* [3] */ TemplateNumberMatcher<3>::matcher, |
| /* [4] */ TemplateNumberMatcher<4>::matcher, |
| /* [5] */ TemplateNumberMatcher<5>::matcher, |
| /* [6] */ TemplateNumberMatcher<6>::matcher, |
| /* [7] */ kStorageMatcher, |
| /* [8] */ kWorkgroupOrStorageMatcher, |
| /* [9] */ kFunctionPrivateWorkgroupStorageMatcher, |
| /* [10] */ kF32TexelFormatMatcher, |
| /* [11] */ kI32TexelFormatMatcher, |
| /* [12] */ kU32TexelFormatMatcher, |
| /* [13] */ kReadWriteMatcher, |
| /* [14] */ kReadableMatcher, |
| /* [15] */ kWritableMatcher, |
| /* [16] */ kDim1DMatcher, |
| /* [17] */ kDim2DMatcher, |
| /* [18] */ kDim3DMatcher, |
| /* [19] */ kDimCubeMatcher, |
| /* [20] */ kDimSubpassMatcher, |
| /* [21] */ kDim1D2D3DOrCubeMatcher, |
| /* [22] */ kSingleSampledMatcher, |
| /* [23] */ kMultiSampledMatcher, |
| /* [24] */ kIsDepthMatcher, |
| /* [25] */ kNonDepthMatcher, |
| /* [26] */ kIsArrayedMatcher, |
| /* [27] */ kNonArrayedMatcher, |
| /* [28] */ kSamplingCompatibleMatcher, |
| /* [29] */ kRwOpCompatibleMatcher, |
| /* [30] */ kSubgroupMatrixKindLeftMatcher, |
| /* [31] */ kSubgroupMatrixKindRightMatcher, |
| /* [32] */ kSubgroupMatrixKindResultMatcher, |
| }; |
| |
| constexpr MatcherIndex kMatcherIndices[] = { |
| /* [0] */ MatcherIndex(32), |
| /* [1] */ MatcherIndex(31), |
| /* [2] */ MatcherIndex(8), |
| /* [3] */ MatcherIndex(17), |
| /* [4] */ MatcherIndex(24), |
| /* [5] */ MatcherIndex(27), |
| /* [6] */ MatcherIndex(22), |
| /* [7] */ MatcherIndex(28), |
| /* [8] */ MatcherIndex(1), |
| /* [9] */ MatcherIndex(14), |
| /* [10] */ MatcherIndex(8), |
| /* [11] */ MatcherIndex(32), |
| /* [12] */ MatcherIndex(31), |
| /* [13] */ MatcherIndex(8), |
| /* [14] */ MatcherIndex(17), |
| /* [15] */ MatcherIndex(24), |
| /* [16] */ MatcherIndex(26), |
| /* [17] */ MatcherIndex(22), |
| /* [18] */ MatcherIndex(28), |
| /* [19] */ MatcherIndex(1), |
| /* [20] */ MatcherIndex(14), |
| /* [21] */ MatcherIndex(0), |
| /* [22] */ MatcherIndex(32), |
| /* [23] */ MatcherIndex(31), |
| /* [24] */ MatcherIndex(8), |
| /* [25] */ MatcherIndex(19), |
| /* [26] */ MatcherIndex(24), |
| /* [27] */ MatcherIndex(27), |
| /* [28] */ MatcherIndex(22), |
| /* [29] */ MatcherIndex(28), |
| /* [30] */ MatcherIndex(1), |
| /* [31] */ MatcherIndex(14), |
| /* [32] */ MatcherIndex(10), |
| /* [33] */ MatcherIndex(32), |
| /* [34] */ MatcherIndex(31), |
| /* [35] */ MatcherIndex(8), |
| /* [36] */ MatcherIndex(19), |
| /* [37] */ MatcherIndex(24), |
| /* [38] */ MatcherIndex(26), |
| /* [39] */ MatcherIndex(22), |
| /* [40] */ MatcherIndex(28), |
| /* [41] */ MatcherIndex(1), |
| /* [42] */ MatcherIndex(14), |
| /* [43] */ MatcherIndex(11), |
| /* [44] */ MatcherIndex(32), |
| /* [45] */ MatcherIndex(31), |
| /* [46] */ MatcherIndex(0), |
| /* [47] */ MatcherIndex(17), |
| /* [48] */ MatcherIndex(25), |
| /* [49] */ MatcherIndex(27), |
| /* [50] */ MatcherIndex(22), |
| /* [51] */ MatcherIndex(28), |
| /* [52] */ MatcherIndex(2), |
| /* [53] */ MatcherIndex(14), |
| /* [54] */ MatcherIndex(1), |
| /* [55] */ MatcherIndex(32), |
| /* [56] */ MatcherIndex(31), |
| /* [57] */ MatcherIndex(0), |
| /* [58] */ MatcherIndex(17), |
| /* [59] */ MatcherIndex(25), |
| /* [60] */ MatcherIndex(27), |
| /* [61] */ MatcherIndex(22), |
| /* [62] */ MatcherIndex(28), |
| /* [63] */ MatcherIndex(3), |
| /* [64] */ MatcherIndex(14), |
| /* [65] */ MatcherIndex(32), |
| /* [66] */ MatcherIndex(31), |
| /* [67] */ MatcherIndex(0), |
| /* [68] */ MatcherIndex(17), |
| /* [69] */ MatcherIndex(25), |
| /* [70] */ MatcherIndex(26), |
| /* [71] */ MatcherIndex(22), |
| /* [72] */ MatcherIndex(28), |
| /* [73] */ MatcherIndex(2), |
| /* [74] */ MatcherIndex(14), |
| /* [75] */ MatcherIndex(32), |
| /* [76] */ MatcherIndex(31), |
| /* [77] */ MatcherIndex(0), |
| /* [78] */ MatcherIndex(17), |
| /* [79] */ MatcherIndex(25), |
| /* [80] */ MatcherIndex(26), |
| /* [81] */ MatcherIndex(22), |
| /* [82] */ MatcherIndex(28), |
| /* [83] */ MatcherIndex(3), |
| /* [84] */ MatcherIndex(14), |
| /* [85] */ MatcherIndex(32), |
| /* [86] */ MatcherIndex(31), |
| /* [87] */ MatcherIndex(0), |
| /* [88] */ MatcherIndex(19), |
| /* [89] */ MatcherIndex(25), |
| /* [90] */ MatcherIndex(27), |
| /* [91] */ MatcherIndex(22), |
| /* [92] */ MatcherIndex(28), |
| /* [93] */ MatcherIndex(2), |
| /* [94] */ MatcherIndex(14), |
| /* [95] */ MatcherIndex(32), |
| /* [96] */ MatcherIndex(31), |
| /* [97] */ MatcherIndex(0), |
| /* [98] */ MatcherIndex(19), |
| /* [99] */ MatcherIndex(25), |
| /* [100] */ MatcherIndex(26), |
| /* [101] */ MatcherIndex(22), |
| /* [102] */ MatcherIndex(28), |
| /* [103] */ MatcherIndex(2), |
| /* [104] */ MatcherIndex(14), |
| /* [105] */ MatcherIndex(32), |
| /* [106] */ MatcherIndex(31), |
| /* [107] */ MatcherIndex(8), |
| /* [108] */ MatcherIndex(17), |
| /* [109] */ MatcherIndex(24), |
| /* [110] */ MatcherIndex(27), |
| /* [111] */ MatcherIndex(22), |
| /* [112] */ MatcherIndex(28), |
| /* [113] */ MatcherIndex(2), |
| /* [114] */ MatcherIndex(14), |
| /* [115] */ MatcherIndex(32), |
| /* [116] */ MatcherIndex(31), |
| /* [117] */ MatcherIndex(8), |
| /* [118] */ MatcherIndex(17), |
| /* [119] */ MatcherIndex(24), |
| /* [120] */ MatcherIndex(26), |
| /* [121] */ MatcherIndex(22), |
| /* [122] */ MatcherIndex(28), |
| /* [123] */ MatcherIndex(2), |
| /* [124] */ MatcherIndex(14), |
| /* [125] */ MatcherIndex(32), |
| /* [126] */ MatcherIndex(31), |
| /* [127] */ MatcherIndex(0), |
| /* [128] */ MatcherIndex(16), |
| /* [129] */ MatcherIndex(25), |
| /* [130] */ MatcherIndex(27), |
| /* [131] */ MatcherIndex(22), |
| /* [132] */ MatcherIndex(28), |
| /* [133] */ MatcherIndex(1), |
| /* [134] */ MatcherIndex(14), |
| /* [135] */ MatcherIndex(32), |
| /* [136] */ MatcherIndex(31), |
| /* [137] */ MatcherIndex(0), |
| /* [138] */ MatcherIndex(17), |
| /* [139] */ MatcherIndex(25), |
| /* [140] */ MatcherIndex(27), |
| /* [141] */ MatcherIndex(22), |
| /* [142] */ MatcherIndex(28), |
| /* [143] */ MatcherIndex(1), |
| /* [144] */ MatcherIndex(14), |
| /* [145] */ MatcherIndex(32), |
| /* [146] */ MatcherIndex(31), |
| /* [147] */ MatcherIndex(0), |
| /* [148] */ MatcherIndex(17), |
| /* [149] */ MatcherIndex(25), |
| /* [150] */ MatcherIndex(26), |
| /* [151] */ MatcherIndex(22), |
| /* [152] */ MatcherIndex(28), |
| /* [153] */ MatcherIndex(1), |
| /* [154] */ MatcherIndex(14), |
| /* [155] */ MatcherIndex(32), |
| /* [156] */ MatcherIndex(31), |
| /* [157] */ MatcherIndex(0), |
| /* [158] */ MatcherIndex(18), |
| /* [159] */ MatcherIndex(25), |
| /* [160] */ MatcherIndex(27), |
| /* [161] */ MatcherIndex(22), |
| /* [162] */ MatcherIndex(28), |
| /* [163] */ MatcherIndex(1), |
| /* [164] */ MatcherIndex(14), |
| /* [165] */ MatcherIndex(32), |
| /* [166] */ MatcherIndex(31), |
| /* [167] */ MatcherIndex(0), |
| /* [168] */ MatcherIndex(18), |
| /* [169] */ MatcherIndex(25), |
| /* [170] */ MatcherIndex(27), |
| /* [171] */ MatcherIndex(22), |
| /* [172] */ MatcherIndex(28), |
| /* [173] */ MatcherIndex(2), |
| /* [174] */ MatcherIndex(14), |
| /* [175] */ MatcherIndex(32), |
| /* [176] */ MatcherIndex(31), |
| /* [177] */ MatcherIndex(0), |
| /* [178] */ MatcherIndex(19), |
| /* [179] */ MatcherIndex(25), |
| /* [180] */ MatcherIndex(27), |
| /* [181] */ MatcherIndex(22), |
| /* [182] */ MatcherIndex(28), |
| /* [183] */ MatcherIndex(1), |
| /* [184] */ MatcherIndex(14), |
| /* [185] */ MatcherIndex(32), |
| /* [186] */ MatcherIndex(31), |
| /* [187] */ MatcherIndex(0), |
| /* [188] */ MatcherIndex(19), |
| /* [189] */ MatcherIndex(25), |
| /* [190] */ MatcherIndex(26), |
| /* [191] */ MatcherIndex(22), |
| /* [192] */ MatcherIndex(28), |
| /* [193] */ MatcherIndex(1), |
| /* [194] */ MatcherIndex(14), |
| /* [195] */ MatcherIndex(32), |
| /* [196] */ MatcherIndex(31), |
| /* [197] */ MatcherIndex(8), |
| /* [198] */ MatcherIndex(17), |
| /* [199] */ MatcherIndex(24), |
| /* [200] */ MatcherIndex(27), |
| /* [201] */ MatcherIndex(22), |
| /* [202] */ MatcherIndex(28), |
| /* [203] */ MatcherIndex(0), |
| /* [204] */ MatcherIndex(14), |
| /* [205] */ MatcherIndex(32), |
| /* [206] */ MatcherIndex(31), |
| /* [207] */ MatcherIndex(8), |
| /* [208] */ MatcherIndex(19), |
| /* [209] */ MatcherIndex(24), |
| /* [210] */ MatcherIndex(27), |
| /* [211] */ MatcherIndex(22), |
| /* [212] */ MatcherIndex(28), |
| /* [213] */ MatcherIndex(0), |
| /* [214] */ MatcherIndex(14), |
| /* [215] */ MatcherIndex(32), |
| /* [216] */ MatcherIndex(31), |
| /* [217] */ MatcherIndex(8), |
| /* [218] */ MatcherIndex(17), |
| /* [219] */ MatcherIndex(24), |
| /* [220] */ MatcherIndex(26), |
| /* [221] */ MatcherIndex(22), |
| /* [222] */ MatcherIndex(28), |
| /* [223] */ MatcherIndex(0), |
| /* [224] */ MatcherIndex(14), |
| /* [225] */ MatcherIndex(32), |
| /* [226] */ MatcherIndex(31), |
| /* [227] */ MatcherIndex(8), |
| /* [228] */ MatcherIndex(19), |
| /* [229] */ MatcherIndex(24), |
| /* [230] */ MatcherIndex(26), |
| /* [231] */ MatcherIndex(22), |
| /* [232] */ MatcherIndex(28), |
| /* [233] */ MatcherIndex(0), |
| /* [234] */ MatcherIndex(14), |
| /* [235] */ MatcherIndex(31), |
| /* [236] */ MatcherIndex(0), |
| /* [237] */ MatcherIndex(16), |
| /* [238] */ MatcherIndex(25), |
| /* [239] */ MatcherIndex(27), |
| /* [240] */ MatcherIndex(22), |
| /* [241] */ MatcherIndex(28), |
| /* [242] */ MatcherIndex(3), |
| /* [243] */ MatcherIndex(14), |
| /* [244] */ MatcherIndex(31), |
| /* [245] */ MatcherIndex(0), |
| /* [246] */ MatcherIndex(18), |
| /* [247] */ MatcherIndex(25), |
| /* [248] */ MatcherIndex(27), |
| /* [249] */ MatcherIndex(22), |
| /* [250] */ MatcherIndex(28), |
| /* [251] */ MatcherIndex(3), |
| /* [252] */ MatcherIndex(14), |
| /* [253] */ MatcherIndex(31), |
| /* [254] */ MatcherIndex(0), |
| /* [255] */ MatcherIndex(17), |
| /* [256] */ MatcherIndex(25), |
| /* [257] */ MatcherIndex(27), |
| /* [258] */ MatcherIndex(23), |
| /* [259] */ MatcherIndex(28), |
| /* [260] */ MatcherIndex(3), |
| /* [261] */ MatcherIndex(14), |
| /* [262] */ MatcherIndex(31), |
| /* [263] */ MatcherIndex(8), |
| /* [264] */ MatcherIndex(17), |
| /* [265] */ MatcherIndex(24), |
| /* [266] */ MatcherIndex(27), |
| /* [267] */ MatcherIndex(23), |
| /* [268] */ MatcherIndex(28), |
| /* [269] */ MatcherIndex(2), |
| /* [270] */ MatcherIndex(14), |
| /* [271] */ MatcherIndex(31), |
| /* [272] */ MatcherIndex(1), |
| /* [273] */ MatcherIndex(16), |
| /* [274] */ MatcherIndex(25), |
| /* [275] */ MatcherIndex(27), |
| /* [276] */ MatcherIndex(22), |
| /* [277] */ MatcherIndex(29), |
| /* [278] */ MatcherIndex(2), |
| /* [279] */ MatcherIndex(3), |
| /* [280] */ MatcherIndex(31), |
| /* [281] */ MatcherIndex(1), |
| /* [282] */ MatcherIndex(17), |
| /* [283] */ MatcherIndex(25), |
| /* [284] */ MatcherIndex(27), |
| /* [285] */ MatcherIndex(22), |
| /* [286] */ MatcherIndex(29), |
| /* [287] */ MatcherIndex(2), |
| /* [288] */ MatcherIndex(3), |
| /* [289] */ MatcherIndex(31), |
| /* [290] */ MatcherIndex(1), |
| /* [291] */ MatcherIndex(17), |
| /* [292] */ MatcherIndex(25), |
| /* [293] */ MatcherIndex(26), |
| /* [294] */ MatcherIndex(22), |
| /* [295] */ MatcherIndex(29), |
| /* [296] */ MatcherIndex(2), |
| /* [297] */ MatcherIndex(3), |
| /* [298] */ MatcherIndex(31), |
| /* [299] */ MatcherIndex(1), |
| /* [300] */ MatcherIndex(18), |
| /* [301] */ MatcherIndex(25), |
| /* [302] */ MatcherIndex(27), |
| /* [303] */ MatcherIndex(22), |
| /* [304] */ MatcherIndex(29), |
| /* [305] */ MatcherIndex(2), |
| /* [306] */ MatcherIndex(3), |
| /* [307] */ MatcherIndex(31), |
| /* [308] */ MatcherIndex(1), |
| /* [309] */ MatcherIndex(19), |
| /* [310] */ MatcherIndex(25), |
| /* [311] */ MatcherIndex(27), |
| /* [312] */ MatcherIndex(22), |
| /* [313] */ MatcherIndex(29), |
| /* [314] */ MatcherIndex(2), |
| /* [315] */ MatcherIndex(3), |
| /* [316] */ MatcherIndex(31), |
| /* [317] */ MatcherIndex(1), |
| /* [318] */ MatcherIndex(19), |
| /* [319] */ MatcherIndex(25), |
| /* [320] */ MatcherIndex(26), |
| /* [321] */ MatcherIndex(22), |
| /* [322] */ MatcherIndex(29), |
| /* [323] */ MatcherIndex(2), |
| /* [324] */ MatcherIndex(3), |
| /* [325] */ MatcherIndex(31), |
| /* [326] */ MatcherIndex(1), |
| /* [327] */ MatcherIndex(17), |
| /* [328] */ MatcherIndex(25), |
| /* [329] */ MatcherIndex(27), |
| /* [330] */ MatcherIndex(23), |
| /* [331] */ MatcherIndex(2), |
| /* [332] */ MatcherIndex(3), |
| /* [333] */ MatcherIndex(4), |
| /* [334] */ MatcherIndex(31), |
| /* [335] */ MatcherIndex(8), |
| /* [336] */ MatcherIndex(17), |
| /* [337] */ MatcherIndex(24), |
| /* [338] */ MatcherIndex(27), |
| /* [339] */ MatcherIndex(22), |
| /* [340] */ MatcherIndex(29), |
| /* [341] */ MatcherIndex(1), |
| /* [342] */ MatcherIndex(2), |
| /* [343] */ MatcherIndex(31), |
| /* [344] */ MatcherIndex(8), |
| /* [345] */ MatcherIndex(17), |
| /* [346] */ MatcherIndex(24), |
| /* [347] */ MatcherIndex(26), |
| /* [348] */ MatcherIndex(22), |
| /* [349] */ MatcherIndex(29), |
| /* [350] */ MatcherIndex(1), |
| /* [351] */ MatcherIndex(2), |
| /* [352] */ MatcherIndex(31), |
| /* [353] */ MatcherIndex(8), |
| /* [354] */ MatcherIndex(19), |
| /* [355] */ MatcherIndex(24), |
| /* [356] */ MatcherIndex(27), |
| /* [357] */ MatcherIndex(22), |
| /* [358] */ MatcherIndex(29), |
| /* [359] */ MatcherIndex(1), |
| /* [360] */ MatcherIndex(2), |
| /* [361] */ MatcherIndex(31), |
| /* [362] */ MatcherIndex(8), |
| /* [363] */ MatcherIndex(19), |
| /* [364] */ MatcherIndex(24), |
| /* [365] */ MatcherIndex(26), |
| /* [366] */ MatcherIndex(22), |
| /* [367] */ MatcherIndex(29), |
| /* [368] */ MatcherIndex(1), |
| /* [369] */ MatcherIndex(2), |
| /* [370] */ MatcherIndex(31), |
| /* [371] */ MatcherIndex(8), |
| /* [372] */ MatcherIndex(17), |
| /* [373] */ MatcherIndex(24), |
| /* [374] */ MatcherIndex(27), |
| /* [375] */ MatcherIndex(23), |
| /* [376] */ MatcherIndex(1), |
| /* [377] */ MatcherIndex(2), |
| /* [378] */ MatcherIndex(3), |
| /* [379] */ MatcherIndex(31), |
| /* [380] */ MatcherIndex(1), |
| /* [381] */ MatcherIndex(16), |
| /* [382] */ MatcherIndex(25), |
| /* [383] */ MatcherIndex(27), |
| /* [384] */ MatcherIndex(22), |
| /* [385] */ MatcherIndex(3), |
| /* [386] */ MatcherIndex(4), |
| /* [387] */ MatcherIndex(5), |
| /* [388] */ MatcherIndex(31), |
| /* [389] */ MatcherIndex(1), |
| /* [390] */ MatcherIndex(17), |
| /* [391] */ MatcherIndex(25), |
| /* [392] */ MatcherIndex(27), |
| /* [393] */ MatcherIndex(22), |
| /* [394] */ MatcherIndex(3), |
| /* [395] */ MatcherIndex(4), |
| /* [396] */ MatcherIndex(5), |
| /* [397] */ MatcherIndex(31), |
| /* [398] */ MatcherIndex(1), |
| /* [399] */ MatcherIndex(17), |
| /* [400] */ MatcherIndex(25), |
| /* [401] */ MatcherIndex(26), |
| /* [402] */ MatcherIndex(22), |
| /* [403] */ MatcherIndex(3), |
| /* [404] */ MatcherIndex(4), |
| /* [405] */ MatcherIndex(5), |
| /* [406] */ MatcherIndex(31), |
| /* [407] */ MatcherIndex(1), |
| /* [408] */ MatcherIndex(18), |
| /* [409] */ MatcherIndex(25), |
| /* [410] */ MatcherIndex(27), |
| /* [411] */ MatcherIndex(22), |
| /* [412] */ MatcherIndex(3), |
| /* [413] */ MatcherIndex(4), |
| /* [414] */ MatcherIndex(5), |
| /* [415] */ MatcherIndex(31), |
| /* [416] */ MatcherIndex(1), |
| /* [417] */ MatcherIndex(19), |
| /* [418] */ MatcherIndex(25), |
| /* [419] */ MatcherIndex(27), |
| /* [420] */ MatcherIndex(22), |
| /* [421] */ MatcherIndex(3), |
| /* [422] */ MatcherIndex(4), |
| /* [423] */ MatcherIndex(5), |
| /* [424] */ MatcherIndex(31), |
| /* [425] */ MatcherIndex(1), |
| /* [426] */ MatcherIndex(19), |
| /* [427] */ MatcherIndex(25), |
| /* [428] */ MatcherIndex(26), |
| /* [429] */ MatcherIndex(22), |
| /* [430] */ MatcherIndex(3), |
| /* [431] */ MatcherIndex(4), |
| /* [432] */ MatcherIndex(5), |
| /* [433] */ MatcherIndex(31), |
| /* [434] */ MatcherIndex(8), |
| /* [435] */ MatcherIndex(17), |
| /* [436] */ MatcherIndex(24), |
| /* [437] */ MatcherIndex(27), |
| /* [438] */ MatcherIndex(22), |
| /* [439] */ MatcherIndex(2), |
| /* [440] */ MatcherIndex(3), |
| /* [441] */ MatcherIndex(4), |
| /* [442] */ MatcherIndex(31), |
| /* [443] */ MatcherIndex(8), |
| /* [444] */ MatcherIndex(17), |
| /* [445] */ MatcherIndex(24), |
| /* [446] */ MatcherIndex(26), |
| /* [447] */ MatcherIndex(22), |
| /* [448] */ MatcherIndex(2), |
| /* [449] */ MatcherIndex(3), |
| /* [450] */ MatcherIndex(4), |
| /* [451] */ MatcherIndex(31), |
| /* [452] */ MatcherIndex(8), |
| /* [453] */ MatcherIndex(19), |
| /* [454] */ MatcherIndex(24), |
| /* [455] */ MatcherIndex(27), |
| /* [456] */ MatcherIndex(22), |
| /* [457] */ MatcherIndex(2), |
| /* [458] */ MatcherIndex(3), |
| /* [459] */ MatcherIndex(4), |
| /* [460] */ MatcherIndex(31), |
| /* [461] */ MatcherIndex(8), |
| /* [462] */ MatcherIndex(19), |
| /* [463] */ MatcherIndex(24), |
| /* [464] */ MatcherIndex(26), |
| /* [465] */ MatcherIndex(22), |
| /* [466] */ MatcherIndex(2), |
| /* [467] */ MatcherIndex(3), |
| /* [468] */ MatcherIndex(4), |
| /* [469] */ MatcherIndex(31), |
| /* [470] */ MatcherIndex(1), |
| /* [471] */ MatcherIndex(21), |
| /* [472] */ MatcherIndex(2), |
| /* [473] */ MatcherIndex(3), |
| /* [474] */ MatcherIndex(22), |
| /* [475] */ MatcherIndex(4), |
| /* [476] */ MatcherIndex(5), |
| /* [477] */ MatcherIndex(6), |
| /* [478] */ MatcherIndex(31), |
| /* [479] */ MatcherIndex(1), |
| /* [480] */ MatcherIndex(17), |
| /* [481] */ MatcherIndex(2), |
| /* [482] */ MatcherIndex(3), |
| /* [483] */ MatcherIndex(23), |
| /* [484] */ MatcherIndex(4), |
| /* [485] */ MatcherIndex(5), |
| /* [486] */ MatcherIndex(6), |
| /* [487] */ MatcherIndex(31), |
| /* [488] */ MatcherIndex(8), |
| /* [489] */ MatcherIndex(16), |
| /* [490] */ MatcherIndex(25), |
| /* [491] */ MatcherIndex(27), |
| /* [492] */ MatcherIndex(22), |
| /* [493] */ MatcherIndex(29), |
| /* [494] */ MatcherIndex(0), |
| /* [495] */ MatcherIndex(1), |
| /* [496] */ MatcherIndex(31), |
| /* [497] */ MatcherIndex(10), |
| /* [498] */ MatcherIndex(16), |
| /* [499] */ MatcherIndex(25), |
| /* [500] */ MatcherIndex(27), |
| /* [501] */ MatcherIndex(22), |
| /* [502] */ MatcherIndex(29), |
| /* [503] */ MatcherIndex(0), |
| /* [504] */ MatcherIndex(1), |
| /* [505] */ MatcherIndex(31), |
| /* [506] */ MatcherIndex(11), |
| /* [507] */ MatcherIndex(16), |
| /* [508] */ MatcherIndex(25), |
| /* [509] */ MatcherIndex(27), |
| /* [510] */ MatcherIndex(22), |
| /* [511] */ MatcherIndex(29), |
| /* [512] */ MatcherIndex(0), |
| /* [513] */ MatcherIndex(1), |
| /* [514] */ MatcherIndex(31), |
| /* [515] */ MatcherIndex(8), |
| /* [516] */ MatcherIndex(17), |
| /* [517] */ MatcherIndex(25), |
| /* [518] */ MatcherIndex(27), |
| /* [519] */ MatcherIndex(22), |
| /* [520] */ MatcherIndex(29), |
| /* [521] */ MatcherIndex(0), |
| /* [522] */ MatcherIndex(1), |
| /* [523] */ MatcherIndex(31), |
| /* [524] */ MatcherIndex(10), |
| /* [525] */ MatcherIndex(17), |
| /* [526] */ MatcherIndex(25), |
| /* [527] */ MatcherIndex(27), |
| /* [528] */ MatcherIndex(22), |
| /* [529] */ MatcherIndex(29), |
| /* [530] */ MatcherIndex(0), |
| /* [531] */ MatcherIndex(1), |
| /* [532] */ MatcherIndex(31), |
| /* [533] */ MatcherIndex(11), |
| /* [534] */ MatcherIndex(17), |
| /* [535] */ MatcherIndex(25), |
| /* [536] */ MatcherIndex(27), |
| /* [537] */ MatcherIndex(22), |
| /* [538] */ MatcherIndex(29), |
| /* [539] */ MatcherIndex(0), |
| /* [540] */ MatcherIndex(1), |
| /* [541] */ MatcherIndex(31), |
| /* [542] */ MatcherIndex(8), |
| /* [543] */ MatcherIndex(17), |
| /* [544] */ MatcherIndex(25), |
| /* [545] */ MatcherIndex(26), |
| /* [546] */ MatcherIndex(22), |
| /* [547] */ MatcherIndex(29), |
| /* [548] */ MatcherIndex(0), |
| /* [549] */ MatcherIndex(1), |
| /* [550] */ MatcherIndex(31), |
| /* [551] */ MatcherIndex(10), |
| /* [552] */ MatcherIndex(17), |
| /* [553] */ MatcherIndex(25), |
| /* [554] */ MatcherIndex(26), |
| /* [555] */ MatcherIndex(22), |
| /* [556] */ MatcherIndex(29), |
| /* [557] */ MatcherIndex(0), |
| /* [558] */ MatcherIndex(1), |
| /* [559] */ MatcherIndex(31), |
| /* [560] */ MatcherIndex(11), |
| /* [561] */ MatcherIndex(17), |
| /* [562] */ MatcherIndex(25), |
| /* [563] */ MatcherIndex(26), |
| /* [564] */ MatcherIndex(22), |
| /* [565] */ MatcherIndex(29), |
| /* [566] */ MatcherIndex(0), |
| /* [567] */ MatcherIndex(1), |
| /* [568] */ MatcherIndex(31), |
| /* [569] */ MatcherIndex(8), |
| /* [570] */ MatcherIndex(18), |
| /* [571] */ MatcherIndex(25), |
| /* [572] */ MatcherIndex(27), |
| /* [573] */ MatcherIndex(22), |
| /* [574] */ MatcherIndex(29), |
| /* [575] */ MatcherIndex(0), |
| /* [576] */ MatcherIndex(1), |
| /* [577] */ MatcherIndex(31), |
| /* [578] */ MatcherIndex(10), |
| /* [579] */ MatcherIndex(18), |
| /* [580] */ MatcherIndex(25), |
| /* [581] */ MatcherIndex(27), |
| /* [582] */ MatcherIndex(22), |
| /* [583] */ MatcherIndex(29), |
| /* [584] */ MatcherIndex(0), |
| /* [585] */ MatcherIndex(1), |
| /* [586] */ MatcherIndex(31), |
| /* [587] */ MatcherIndex(11), |
| /* [588] */ MatcherIndex(18), |
| /* [589] */ MatcherIndex(25), |
| /* [590] */ MatcherIndex(27), |
| /* [591] */ MatcherIndex(22), |
| /* [592] */ MatcherIndex(29), |
| /* [593] */ MatcherIndex(0), |
| /* [594] */ MatcherIndex(1), |
| /* [595] */ MatcherIndex(31), |
| /* [596] */ MatcherIndex(1), |
| /* [597] */ MatcherIndex(20), |
| /* [598] */ MatcherIndex(25), |
| /* [599] */ MatcherIndex(27), |
| /* [600] */ MatcherIndex(22), |
| /* [601] */ MatcherIndex(29), |
| /* [602] */ MatcherIndex(0), |
| /* [603] */ MatcherIndex(3), |
| /* [604] */ MatcherIndex(31), |
| /* [605] */ MatcherIndex(8), |
| /* [606] */ MatcherIndex(16), |
| /* [607] */ MatcherIndex(25), |
| /* [608] */ MatcherIndex(27), |
| /* [609] */ MatcherIndex(22), |
| /* [610] */ MatcherIndex(29), |
| /* [611] */ MatcherIndex(10), |
| /* [612] */ MatcherIndex(15), |
| /* [613] */ MatcherIndex(0), |
| /* [614] */ MatcherIndex(31), |
| /* [615] */ MatcherIndex(10), |
| /* [616] */ MatcherIndex(16), |
| /* [617] */ MatcherIndex(25), |
| /* [618] */ MatcherIndex(27), |
| /* [619] */ MatcherIndex(22), |
| /* [620] */ MatcherIndex(29), |
| /* [621] */ MatcherIndex(11), |
| /* [622] */ MatcherIndex(15), |
| /* [623] */ MatcherIndex(31), |
| /* [624] */ MatcherIndex(11), |
| /* [625] */ MatcherIndex(16), |
| /* [626] */ MatcherIndex(25), |
| /* [627] */ MatcherIndex(27), |
| /* [628] */ MatcherIndex(22), |
| /* [629] */ MatcherIndex(29), |
| /* [630] */ MatcherIndex(12), |
| /* [631] */ MatcherIndex(15), |
| /* [632] */ MatcherIndex(31), |
| /* [633] */ MatcherIndex(8), |
| /* [634] */ MatcherIndex(17), |
| /* [635] */ MatcherIndex(25), |
| /* [636] */ MatcherIndex(27), |
| /* [637] */ MatcherIndex(22), |
| /* [638] */ MatcherIndex(29), |
| /* [639] */ MatcherIndex(10), |
| /* [640] */ MatcherIndex(15), |
| /* [641] */ MatcherIndex(31), |
| /* [642] */ MatcherIndex(10), |
| /* [643] */ MatcherIndex(17), |
| /* [644] */ MatcherIndex(25), |
| /* [645] */ MatcherIndex(27), |
| /* [646] */ MatcherIndex(22), |
| /* [647] */ MatcherIndex(29), |
| /* [648] */ MatcherIndex(11), |
| /* [649] */ MatcherIndex(15), |
| /* [650] */ MatcherIndex(31), |
| /* [651] */ MatcherIndex(11), |
| /* [652] */ MatcherIndex(17), |
| /* [653] */ MatcherIndex(25), |
| /* [654] */ MatcherIndex(27), |
| /* [655] */ MatcherIndex(22), |
| /* [656] */ MatcherIndex(29), |
| /* [657] */ MatcherIndex(12), |
| /* [658] */ MatcherIndex(15), |
| /* [659] */ MatcherIndex(31), |
| /* [660] */ MatcherIndex(8), |
| /* [661] */ MatcherIndex(17), |
| /* [662] */ MatcherIndex(25), |
| /* [663] */ MatcherIndex(26), |
| /* [664] */ MatcherIndex(22), |
| /* [665] */ MatcherIndex(29), |
| /* [666] */ MatcherIndex(10), |
| /* [667] */ MatcherIndex(15), |
| /* [668] */ MatcherIndex(31), |
| /* [669] */ MatcherIndex(10), |
| /* [670] */ MatcherIndex(17), |
| /* [671] */ MatcherIndex(25), |
| /* [672] */ MatcherIndex(26), |
| /* [673] */ MatcherIndex(22), |
| /* [674] */ MatcherIndex(29), |
| /* [675] */ MatcherIndex(11), |
| /* [676] */ MatcherIndex(15), |
| /* [677] */ MatcherIndex(31), |
| /* [678] */ MatcherIndex(11), |
| /* [679] */ MatcherIndex(17), |
| /* [680] */ MatcherIndex(25), |
| /* [681] */ MatcherIndex(26), |
| /* [682] */ MatcherIndex(22), |
| /* [683] */ MatcherIndex(29), |
| /* [684] */ MatcherIndex(12), |
| /* [685] */ MatcherIndex(15), |
| /* [686] */ MatcherIndex(31), |
| /* [687] */ MatcherIndex(8), |
| /* [688] */ MatcherIndex(18), |
| /* [689] */ MatcherIndex(25), |
| /* [690] */ MatcherIndex(27), |
| /* [691] */ MatcherIndex(22), |
| /* [692] */ MatcherIndex(29), |
| /* [693] */ MatcherIndex(10), |
| /* [694] */ MatcherIndex(15), |
| /* [695] */ MatcherIndex(31), |
| /* [696] */ MatcherIndex(10), |
| /* [697] */ MatcherIndex(18), |
| /* [698] */ MatcherIndex(25), |
| /* [699] */ MatcherIndex(27), |
| /* [700] */ MatcherIndex(22), |
| /* [701] */ MatcherIndex(29), |
| /* [702] */ MatcherIndex(11), |
| /* [703] */ MatcherIndex(15), |
| /* [704] */ MatcherIndex(31), |
| /* [705] */ MatcherIndex(11), |
| /* [706] */ MatcherIndex(18), |
| /* [707] */ MatcherIndex(25), |
| /* [708] */ MatcherIndex(27), |
| /* [709] */ MatcherIndex(22), |
| /* [710] */ MatcherIndex(29), |
| /* [711] */ MatcherIndex(12), |
| /* [712] */ MatcherIndex(15), |
| /* [713] */ MatcherIndex(31), |
| /* [714] */ MatcherIndex(1), |
| /* [715] */ MatcherIndex(16), |
| /* [716] */ MatcherIndex(25), |
| /* [717] */ MatcherIndex(27), |
| /* [718] */ MatcherIndex(22), |
| /* [719] */ MatcherIndex(28), |
| /* [720] */ MatcherIndex(3), |
| /* [721] */ MatcherIndex(14), |
| /* [722] */ MatcherIndex(31), |
| /* [723] */ MatcherIndex(1), |
| /* [724] */ MatcherIndex(17), |
| /* [725] */ MatcherIndex(25), |
| /* [726] */ MatcherIndex(27), |
| /* [727] */ MatcherIndex(22), |
| /* [728] */ MatcherIndex(28), |
| /* [729] */ MatcherIndex(3), |
| /* [730] */ MatcherIndex(14), |
| /* [731] */ MatcherIndex(31), |
| /* [732] */ MatcherIndex(1), |
| /* [733] */ MatcherIndex(17), |
| /* [734] */ MatcherIndex(25), |
| /* [735] */ MatcherIndex(26), |
| /* [736] */ MatcherIndex(22), |
| /* [737] */ MatcherIndex(28), |
| /* [738] */ MatcherIndex(3), |
| /* [739] */ MatcherIndex(14), |
| /* [740] */ MatcherIndex(31), |
| /* [741] */ MatcherIndex(1), |
| /* [742] */ MatcherIndex(18), |
| /* [743] */ MatcherIndex(25), |
| /* [744] */ MatcherIndex(27), |
| /* [745] */ MatcherIndex(22), |
| /* [746] */ MatcherIndex(28), |
| /* [747] */ MatcherIndex(3), |
| /* [748] */ MatcherIndex(14), |
| /* [749] */ MatcherIndex(31), |
| /* [750] */ MatcherIndex(1), |
| /* [751] */ MatcherIndex(19), |
| /* [752] */ MatcherIndex(25), |
| /* [753] */ MatcherIndex(27), |
| /* [754] */ MatcherIndex(22), |
| /* [755] */ MatcherIndex(28), |
| /* [756] */ MatcherIndex(3), |
| /* [757] */ MatcherIndex(14), |
| /* [758] */ MatcherIndex(31), |
| /* [759] */ MatcherIndex(1), |
| /* [760] */ MatcherIndex(19), |
| /* [761] */ MatcherIndex(25), |
| /* [762] */ MatcherIndex(26), |
| /* [763] */ MatcherIndex(22), |
| /* [764] */ MatcherIndex(28), |
| /* [765] */ MatcherIndex(3), |
| /* [766] */ MatcherIndex(14), |
| /* [767] */ MatcherIndex(31), |
| /* [768] */ MatcherIndex(8), |
| /* [769] */ MatcherIndex(19), |
| /* [770] */ MatcherIndex(24), |
| /* [771] */ MatcherIndex(27), |
| /* [772] */ MatcherIndex(22), |
| /* [773] */ MatcherIndex(28), |
| /* [774] */ MatcherIndex(2), |
| /* [775] */ MatcherIndex(14), |
| /* [776] */ MatcherIndex(31), |
| /* [777] */ MatcherIndex(8), |
| /* [778] */ MatcherIndex(19), |
| /* [779] */ MatcherIndex(24), |
| /* [780] */ MatcherIndex(26), |
| /* [781] */ MatcherIndex(22), |
| /* [782] */ MatcherIndex(28), |
| /* [783] */ MatcherIndex(2), |
| /* [784] */ MatcherIndex(14), |
| /* [785] */ MatcherIndex(29), |
| /* [786] */ MatcherIndex(2), |
| /* [787] */ MatcherIndex(24), |
| /* [788] */ MatcherIndex(1), |
| /* [789] */ MatcherIndex(0), |
| /* [790] */ MatcherIndex(15), |
| /* [791] */ MatcherIndex(29), |
| /* [792] */ MatcherIndex(3), |
| /* [793] */ MatcherIndex(24), |
| /* [794] */ MatcherIndex(2), |
| /* [795] */ MatcherIndex(1), |
| /* [796] */ MatcherIndex(15), |
| /* [797] */ MatcherIndex(29), |
| /* [798] */ MatcherIndex(2), |
| /* [799] */ MatcherIndex(26), |
| /* [800] */ MatcherIndex(0), |
| /* [801] */ MatcherIndex(13), |
| /* [802] */ MatcherIndex(8), |
| /* [803] */ MatcherIndex(33), |
| /* [804] */ MatcherIndex(1), |
| /* [805] */ MatcherIndex(2), |
| /* [806] */ MatcherIndex(3), |
| /* [807] */ MatcherIndex(4), |
| /* [808] */ MatcherIndex(33), |
| /* [809] */ MatcherIndex(0), |
| /* [810] */ MatcherIndex(1), |
| /* [811] */ MatcherIndex(2), |
| /* [812] */ MatcherIndex(3), |
| /* [813] */ MatcherIndex(33), |
| /* [814] */ MatcherIndex(32), |
| /* [815] */ MatcherIndex(1), |
| /* [816] */ MatcherIndex(2), |
| /* [817] */ MatcherIndex(3), |
| /* [818] */ MatcherIndex(33), |
| /* [819] */ MatcherIndex(30), |
| /* [820] */ MatcherIndex(0), |
| /* [821] */ MatcherIndex(4), |
| /* [822] */ MatcherIndex(3), |
| /* [823] */ MatcherIndex(33), |
| /* [824] */ MatcherIndex(31), |
| /* [825] */ MatcherIndex(0), |
| /* [826] */ MatcherIndex(2), |
| /* [827] */ MatcherIndex(4), |
| /* [828] */ MatcherIndex(29), |
| /* [829] */ MatcherIndex(7), |
| /* [830] */ MatcherIndex(30), |
| /* [831] */ MatcherIndex(1), |
| /* [832] */ MatcherIndex(29), |
| /* [833] */ MatcherIndex(2), |
| /* [834] */ MatcherIndex(0), |
| /* [835] */ MatcherIndex(14), |
| /* [836] */ MatcherIndex(29), |
| /* [837] */ MatcherIndex(2), |
| /* [838] */ MatcherIndex(0), |
| /* [839] */ MatcherIndex(15), |
| /* [840] */ MatcherIndex(25), |
| /* [841] */ MatcherIndex(2), |
| /* [842] */ MatcherIndex(3), |
| /* [843] */ MatcherIndex(0), |
| /* [844] */ MatcherIndex(25), |
| /* [845] */ MatcherIndex(1), |
| /* [846] */ MatcherIndex(3), |
| /* [847] */ MatcherIndex(0), |
| /* [848] */ MatcherIndex(25), |
| /* [849] */ MatcherIndex(2), |
| /* [850] */ MatcherIndex(1), |
| /* [851] */ MatcherIndex(0), |
| /* [852] */ MatcherIndex(25), |
| /* [853] */ MatcherIndex(1), |
| /* [854] */ MatcherIndex(2), |
| /* [855] */ MatcherIndex(0), |
| /* [856] */ MatcherIndex(29), |
| /* [857] */ MatcherIndex(1), |
| /* [858] */ MatcherIndex(0), |
| /* [859] */ MatcherIndex(15), |
| /* [860] */ MatcherIndex(29), |
| /* [861] */ MatcherIndex(2), |
| /* [862] */ MatcherIndex(1), |
| /* [863] */ MatcherIndex(15), |
| /* [864] */ MatcherIndex(29), |
| /* [865] */ MatcherIndex(8), |
| /* [866] */ MatcherIndex(2), |
| /* [867] */ MatcherIndex(14), |
| /* [868] */ MatcherIndex(29), |
| /* [869] */ MatcherIndex(8), |
| /* [870] */ MatcherIndex(1), |
| /* [871] */ MatcherIndex(15), |
| /* [872] */ MatcherIndex(24), |
| /* [873] */ MatcherIndex(0), |
| /* [874] */ MatcherIndex(1), |
| /* [875] */ MatcherIndex(24), |
| /* [876] */ MatcherIndex(2), |
| /* [877] */ MatcherIndex(0), |
| /* [878] */ MatcherIndex(24), |
| /* [879] */ MatcherIndex(0), |
| /* [880] */ MatcherIndex(7), |
| /* [881] */ MatcherIndex(24), |
| /* [882] */ MatcherIndex(3), |
| /* [883] */ MatcherIndex(0), |
| /* [884] */ MatcherIndex(24), |
| /* [885] */ MatcherIndex(3), |
| /* [886] */ MatcherIndex(1), |
| /* [887] */ MatcherIndex(24), |
| /* [888] */ MatcherIndex(3), |
| /* [889] */ MatcherIndex(2), |
| /* [890] */ MatcherIndex(24), |
| /* [891] */ MatcherIndex(4), |
| /* [892] */ MatcherIndex(0), |
| /* [893] */ MatcherIndex(24), |
| /* [894] */ MatcherIndex(4), |
| /* [895] */ MatcherIndex(1), |
| /* [896] */ MatcherIndex(24), |
| /* [897] */ MatcherIndex(4), |
| /* [898] */ MatcherIndex(2), |
| /* [899] */ MatcherIndex(24), |
| /* [900] */ MatcherIndex(4), |
| /* [901] */ MatcherIndex(3), |
| /* [902] */ MatcherIndex(24), |
| /* [903] */ MatcherIndex(0), |
| /* [904] */ MatcherIndex(2), |
| /* [905] */ MatcherIndex(24), |
| /* [906] */ MatcherIndex(2), |
| /* [907] */ MatcherIndex(7), |
| /* [908] */ MatcherIndex(12), |
| /* [909] */ MatcherIndex(8), |
| /* [910] */ MatcherIndex(12), |
| /* [911] */ MatcherIndex(3), |
| /* [912] */ MatcherIndex(12), |
| /* [913] */ MatcherIndex(1), |
| /* [914] */ MatcherIndex(13), |
| /* [915] */ MatcherIndex(1), |
| /* [916] */ MatcherIndex(12), |
| /* [917] */ MatcherIndex(0), |
| /* [918] */ MatcherIndex(13), |
| /* [919] */ MatcherIndex(0), |
| /* [920] */ MatcherIndex(12), |
| /* [921] */ MatcherIndex(2), |
| /* [922] */ MatcherIndex(13), |
| /* [923] */ MatcherIndex(2), |
| /* [924] */ MatcherIndex(32), |
| /* [925] */ MatcherIndex(0), |
| /* [926] */ MatcherIndex(19), |
| /* [927] */ MatcherIndex(0), |
| /* [928] */ MatcherIndex(23), |
| /* [929] */ MatcherIndex(0), |
| /* [930] */ MatcherIndex(35), |
| /* [931] */ MatcherIndex(34), |
| /* [932] */ MatcherIndex(36), |
| /* [933] */ MatcherIndex(39), |
| /* [934] */ MatcherIndex(38), |
| /* [935] */ MatcherIndex(9), |
| /* [936] */ MatcherIndex(37), |
| /* [937] */ MatcherIndex(40), |
| }; |
| |
| static_assert(MatcherIndicesIndex::CanIndex(kMatcherIndices), |
| "MatcherIndicesIndex is not large enough to index kMatcherIndices"); |
| |
| constexpr ParameterInfo kParameters[] = { |
| { |
| /* [0] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(797), |
| }, |
| { |
| /* [1] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(8), |
| }, |
| { |
| /* [2] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(8), |
| }, |
| { |
| /* [3] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(8), |
| }, |
| { |
| /* [4] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(21), |
| }, |
| { |
| /* [5] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(21), |
| }, |
| { |
| /* [6] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(21), |
| }, |
| { |
| /* [7] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(52), |
| }, |
| { |
| /* [8] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(836), |
| }, |
| { |
| /* [9] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(8), |
| }, |
| { |
| /* [10] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(8), |
| }, |
| { |
| /* [11] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(8), |
| }, |
| { |
| /* [12] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(21), |
| }, |
| { |
| /* [13] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(21), |
| }, |
| { |
| /* [14] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(8), |
| }, |
| { |
| /* [15] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(52), |
| }, |
| { |
| /* [16] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(63), |
| }, |
| { |
| /* [17] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(44), |
| }, |
| { |
| /* [18] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(908), |
| }, |
| { |
| /* [19] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [20] */ |
| /* usage */ core::ParameterUsage::kDdx, |
| /* matcher_indices */ MatcherIndicesIndex(908), |
| }, |
| { |
| /* [21] */ |
| /* usage */ core::ParameterUsage::kDdy, |
| /* matcher_indices */ MatcherIndicesIndex(908), |
| }, |
| { |
| /* [22] */ |
| /* usage */ core::ParameterUsage::kConstOffset, |
| /* matcher_indices */ MatcherIndicesIndex(912), |
| }, |
| { |
| /* [23] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(65), |
| }, |
| { |
| /* [24] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(801), |
| }, |
| { |
| /* [25] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [26] */ |
| /* usage */ core::ParameterUsage::kDdx, |
| /* matcher_indices */ MatcherIndicesIndex(908), |
| }, |
| { |
| /* [27] */ |
| /* usage */ core::ParameterUsage::kDdy, |
| /* matcher_indices */ MatcherIndicesIndex(908), |
| }, |
| { |
| /* [28] */ |
| /* usage */ core::ParameterUsage::kConstOffset, |
| /* matcher_indices */ MatcherIndicesIndex(912), |
| }, |
| { |
| /* [29] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(165), |
| }, |
| { |
| /* [30] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(801), |
| }, |
| { |
| /* [31] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [32] */ |
| /* usage */ core::ParameterUsage::kDdx, |
| /* matcher_indices */ MatcherIndicesIndex(801), |
| }, |
| { |
| /* [33] */ |
| /* usage */ core::ParameterUsage::kDdy, |
| /* matcher_indices */ MatcherIndicesIndex(801), |
| }, |
| { |
| /* [34] */ |
| /* usage */ core::ParameterUsage::kConstOffset, |
| /* matcher_indices */ MatcherIndicesIndex(914), |
| }, |
| { |
| /* [35] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(0), |
| }, |
| { |
| /* [36] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(908), |
| }, |
| { |
| /* [37] */ |
| /* usage */ core::ParameterUsage::kDref, |
| /* matcher_indices */ MatcherIndicesIndex(2), |
| }, |
| { |
| /* [38] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [39] */ |
| /* usage */ core::ParameterUsage::kLod, |
| /* matcher_indices */ MatcherIndicesIndex(2), |
| }, |
| { |
| /* [40] */ |
| /* usage */ core::ParameterUsage::kConstOffset, |
| /* matcher_indices */ MatcherIndicesIndex(916), |
| }, |
| { |
| /* [41] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(11), |
| }, |
| { |
| /* [42] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(801), |
| }, |
| { |
| /* [43] */ |
| /* usage */ core::ParameterUsage::kDref, |
| /* matcher_indices */ MatcherIndicesIndex(2), |
| }, |
| { |
| /* [44] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [45] */ |
| /* usage */ core::ParameterUsage::kLod, |
| /* matcher_indices */ MatcherIndicesIndex(2), |
| }, |
| { |
| /* [46] */ |
| /* usage */ core::ParameterUsage::kConstOffset, |
| /* matcher_indices */ MatcherIndicesIndex(916), |
| }, |
| { |
| /* [47] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(0), |
| }, |
| { |
| /* [48] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(908), |
| }, |
| { |
| /* [49] */ |
| /* usage */ core::ParameterUsage::kDref, |
| /* matcher_indices */ MatcherIndicesIndex(21), |
| }, |
| { |
| /* [50] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [51] */ |
| /* usage */ core::ParameterUsage::kConstOffset, |
| /* matcher_indices */ MatcherIndicesIndex(910), |
| }, |
| { |
| /* [52] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(11), |
| }, |
| { |
| /* [53] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(801), |
| }, |
| { |
| /* [54] */ |
| /* usage */ core::ParameterUsage::kDref, |
| /* matcher_indices */ MatcherIndicesIndex(21), |
| }, |
| { |
| /* [55] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [56] */ |
| /* usage */ core::ParameterUsage::kConstOffset, |
| /* matcher_indices */ MatcherIndicesIndex(910), |
| }, |
| { |
| /* [57] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(55), |
| }, |
| { |
| /* [58] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(908), |
| }, |
| { |
| /* [59] */ |
| /* usage */ core::ParameterUsage::kComponent, |
| /* matcher_indices */ MatcherIndicesIndex(8), |
| }, |
| { |
| /* [60] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [61] */ |
| /* usage */ core::ParameterUsage::kConstOffset, |
| /* matcher_indices */ MatcherIndicesIndex(920), |
| }, |
| { |
| /* [62] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(75), |
| }, |
| { |
| /* [63] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(801), |
| }, |
| { |
| /* [64] */ |
| /* usage */ core::ParameterUsage::kComponent, |
| /* matcher_indices */ MatcherIndicesIndex(8), |
| }, |
| { |
| /* [65] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [66] */ |
| /* usage */ core::ParameterUsage::kConstOffset, |
| /* matcher_indices */ MatcherIndicesIndex(920), |
| }, |
| { |
| /* [67] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(105), |
| }, |
| { |
| /* [68] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(908), |
| }, |
| { |
| /* [69] */ |
| /* usage */ core::ParameterUsage::kComponent, |
| /* matcher_indices */ MatcherIndicesIndex(21), |
| }, |
| { |
| /* [70] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [71] */ |
| /* usage */ core::ParameterUsage::kConstOffset, |
| /* matcher_indices */ MatcherIndicesIndex(912), |
| }, |
| { |
| /* [72] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(115), |
| }, |
| { |
| /* [73] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(801), |
| }, |
| { |
| /* [74] */ |
| /* usage */ core::ParameterUsage::kComponent, |
| /* matcher_indices */ MatcherIndicesIndex(21), |
| }, |
| { |
| /* [75] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [76] */ |
| /* usage */ core::ParameterUsage::kConstOffset, |
| /* matcher_indices */ MatcherIndicesIndex(912), |
| }, |
| { |
| /* [77] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(44), |
| }, |
| { |
| /* [78] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(908), |
| }, |
| { |
| /* [79] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [80] */ |
| /* usage */ core::ParameterUsage::kBias, |
| /* matcher_indices */ MatcherIndicesIndex(2), |
| }, |
| { |
| /* [81] */ |
| /* usage */ core::ParameterUsage::kConstOffset, |
| /* matcher_indices */ MatcherIndicesIndex(912), |
| }, |
| { |
| /* [82] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(65), |
| }, |
| { |
| /* [83] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(801), |
| }, |
| { |
| /* [84] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [85] */ |
| /* usage */ core::ParameterUsage::kBias, |
| /* matcher_indices */ MatcherIndicesIndex(2), |
| }, |
| { |
| /* [86] */ |
| /* usage */ core::ParameterUsage::kConstOffset, |
| /* matcher_indices */ MatcherIndicesIndex(912), |
| }, |
| { |
| /* [87] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(165), |
| }, |
| { |
| /* [88] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(801), |
| }, |
| { |
| /* [89] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [90] */ |
| /* usage */ core::ParameterUsage::kBias, |
| /* matcher_indices */ MatcherIndicesIndex(2), |
| }, |
| { |
| /* [91] */ |
| /* usage */ core::ParameterUsage::kConstOffset, |
| /* matcher_indices */ MatcherIndicesIndex(914), |
| }, |
| { |
| /* [92] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(44), |
| }, |
| { |
| /* [93] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(801), |
| }, |
| { |
| /* [94] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [95] */ |
| /* usage */ core::ParameterUsage::kBias, |
| /* matcher_indices */ MatcherIndicesIndex(2), |
| }, |
| { |
| /* [96] */ |
| /* usage */ core::ParameterUsage::kConstOffset, |
| /* matcher_indices */ MatcherIndicesIndex(912), |
| }, |
| { |
| /* [97] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(165), |
| }, |
| { |
| /* [98] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(9), |
| }, |
| { |
| /* [99] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [100] */ |
| /* usage */ core::ParameterUsage::kBias, |
| /* matcher_indices */ MatcherIndicesIndex(2), |
| }, |
| { |
| /* [101] */ |
| /* usage */ core::ParameterUsage::kConstOffset, |
| /* matcher_indices */ MatcherIndicesIndex(914), |
| }, |
| { |
| /* [102] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(135), |
| }, |
| { |
| /* [103] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(908), |
| }, |
| { |
| /* [104] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [105] */ |
| /* usage */ core::ParameterUsage::kDdx, |
| /* matcher_indices */ MatcherIndicesIndex(908), |
| }, |
| { |
| /* [106] */ |
| /* usage */ core::ParameterUsage::kDdy, |
| /* matcher_indices */ MatcherIndicesIndex(908), |
| }, |
| { |
| /* [107] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(44), |
| }, |
| { |
| /* [108] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(908), |
| }, |
| { |
| /* [109] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [110] */ |
| /* usage */ core::ParameterUsage::kLod, |
| /* matcher_indices */ MatcherIndicesIndex(2), |
| }, |
| { |
| /* [111] */ |
| /* usage */ core::ParameterUsage::kConstOffset, |
| /* matcher_indices */ MatcherIndicesIndex(912), |
| }, |
| { |
| /* [112] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(145), |
| }, |
| { |
| /* [113] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(801), |
| }, |
| { |
| /* [114] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [115] */ |
| /* usage */ core::ParameterUsage::kDdx, |
| /* matcher_indices */ MatcherIndicesIndex(908), |
| }, |
| { |
| /* [116] */ |
| /* usage */ core::ParameterUsage::kDdy, |
| /* matcher_indices */ MatcherIndicesIndex(908), |
| }, |
| { |
| /* [117] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(65), |
| }, |
| { |
| /* [118] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(801), |
| }, |
| { |
| /* [119] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [120] */ |
| /* usage */ core::ParameterUsage::kLod, |
| /* matcher_indices */ MatcherIndicesIndex(2), |
| }, |
| { |
| /* [121] */ |
| /* usage */ core::ParameterUsage::kConstOffset, |
| /* matcher_indices */ MatcherIndicesIndex(912), |
| }, |
| { |
| /* [122] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(155), |
| }, |
| { |
| /* [123] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(801), |
| }, |
| { |
| /* [124] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [125] */ |
| /* usage */ core::ParameterUsage::kDdx, |
| /* matcher_indices */ MatcherIndicesIndex(801), |
| }, |
| { |
| /* [126] */ |
| /* usage */ core::ParameterUsage::kDdy, |
| /* matcher_indices */ MatcherIndicesIndex(801), |
| }, |
| { |
| /* [127] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(165), |
| }, |
| { |
| /* [128] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(801), |
| }, |
| { |
| /* [129] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [130] */ |
| /* usage */ core::ParameterUsage::kLod, |
| /* matcher_indices */ MatcherIndicesIndex(2), |
| }, |
| { |
| /* [131] */ |
| /* usage */ core::ParameterUsage::kConstOffset, |
| /* matcher_indices */ MatcherIndicesIndex(914), |
| }, |
| { |
| /* [132] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(175), |
| }, |
| { |
| /* [133] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(801), |
| }, |
| { |
| /* [134] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [135] */ |
| /* usage */ core::ParameterUsage::kDdx, |
| /* matcher_indices */ MatcherIndicesIndex(801), |
| }, |
| { |
| /* [136] */ |
| /* usage */ core::ParameterUsage::kDdy, |
| /* matcher_indices */ MatcherIndicesIndex(801), |
| }, |
| { |
| /* [137] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(185), |
| }, |
| { |
| /* [138] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(9), |
| }, |
| { |
| /* [139] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [140] */ |
| /* usage */ core::ParameterUsage::kDdx, |
| /* matcher_indices */ MatcherIndicesIndex(801), |
| }, |
| { |
| /* [141] */ |
| /* usage */ core::ParameterUsage::kDdy, |
| /* matcher_indices */ MatcherIndicesIndex(801), |
| }, |
| { |
| /* [142] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(0), |
| }, |
| { |
| /* [143] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(908), |
| }, |
| { |
| /* [144] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [145] */ |
| /* usage */ core::ParameterUsage::kLod, |
| /* matcher_indices */ MatcherIndicesIndex(2), |
| }, |
| { |
| /* [146] */ |
| /* usage */ core::ParameterUsage::kConstOffset, |
| /* matcher_indices */ MatcherIndicesIndex(916), |
| }, |
| { |
| /* [147] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(11), |
| }, |
| { |
| /* [148] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(801), |
| }, |
| { |
| /* [149] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [150] */ |
| /* usage */ core::ParameterUsage::kLod, |
| /* matcher_indices */ MatcherIndicesIndex(2), |
| }, |
| { |
| /* [151] */ |
| /* usage */ core::ParameterUsage::kConstOffset, |
| /* matcher_indices */ MatcherIndicesIndex(916), |
| }, |
| { |
| /* [152] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(0), |
| }, |
| { |
| /* [153] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(908), |
| }, |
| { |
| /* [154] */ |
| /* usage */ core::ParameterUsage::kDref, |
| /* matcher_indices */ MatcherIndicesIndex(2), |
| }, |
| { |
| /* [155] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [156] */ |
| /* usage */ core::ParameterUsage::kConstOffset, |
| /* matcher_indices */ MatcherIndicesIndex(916), |
| }, |
| { |
| /* [157] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(11), |
| }, |
| { |
| /* [158] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(801), |
| }, |
| { |
| /* [159] */ |
| /* usage */ core::ParameterUsage::kDref, |
| /* matcher_indices */ MatcherIndicesIndex(2), |
| }, |
| { |
| /* [160] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [161] */ |
| /* usage */ core::ParameterUsage::kConstOffset, |
| /* matcher_indices */ MatcherIndicesIndex(916), |
| }, |
| { |
| /* [162] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(195), |
| }, |
| { |
| /* [163] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(908), |
| }, |
| { |
| /* [164] */ |
| /* usage */ core::ParameterUsage::kDref, |
| /* matcher_indices */ MatcherIndicesIndex(2), |
| }, |
| { |
| /* [165] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [166] */ |
| /* usage */ core::ParameterUsage::kLod, |
| /* matcher_indices */ MatcherIndicesIndex(2), |
| }, |
| { |
| /* [167] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(215), |
| }, |
| { |
| /* [168] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(801), |
| }, |
| { |
| /* [169] */ |
| /* usage */ core::ParameterUsage::kDref, |
| /* matcher_indices */ MatcherIndicesIndex(2), |
| }, |
| { |
| /* [170] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [171] */ |
| /* usage */ core::ParameterUsage::kLod, |
| /* matcher_indices */ MatcherIndicesIndex(2), |
| }, |
| { |
| /* [172] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(205), |
| }, |
| { |
| /* [173] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(801), |
| }, |
| { |
| /* [174] */ |
| /* usage */ core::ParameterUsage::kDref, |
| /* matcher_indices */ MatcherIndicesIndex(2), |
| }, |
| { |
| /* [175] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [176] */ |
| /* usage */ core::ParameterUsage::kLod, |
| /* matcher_indices */ MatcherIndicesIndex(2), |
| }, |
| { |
| /* [177] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(225), |
| }, |
| { |
| /* [178] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(9), |
| }, |
| { |
| /* [179] */ |
| /* usage */ core::ParameterUsage::kDref, |
| /* matcher_indices */ MatcherIndicesIndex(2), |
| }, |
| { |
| /* [180] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [181] */ |
| /* usage */ core::ParameterUsage::kLod, |
| /* matcher_indices */ MatcherIndicesIndex(2), |
| }, |
| { |
| /* [182] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(868), |
| }, |
| { |
| /* [183] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(808), |
| }, |
| { |
| /* [184] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [185] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [186] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [187] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(797), |
| }, |
| { |
| /* [188] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(8), |
| }, |
| { |
| /* [189] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(8), |
| }, |
| { |
| /* [190] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(21), |
| }, |
| { |
| /* [191] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(836), |
| }, |
| { |
| /* [192] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(8), |
| }, |
| { |
| /* [193] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(8), |
| }, |
| { |
| /* [194] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(21), |
| }, |
| { |
| /* [195] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(22), |
| }, |
| { |
| /* [196] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(801), |
| }, |
| { |
| /* [197] */ |
| /* usage */ core::ParameterUsage::kDref, |
| /* matcher_indices */ MatcherIndicesIndex(21), |
| }, |
| { |
| /* [198] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [199] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(33), |
| }, |
| { |
| /* [200] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(9), |
| }, |
| { |
| /* [201] */ |
| /* usage */ core::ParameterUsage::kDref, |
| /* matcher_indices */ MatcherIndicesIndex(21), |
| }, |
| { |
| /* [202] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [203] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(235), |
| }, |
| { |
| /* [204] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(8), |
| }, |
| { |
| /* [205] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [206] */ |
| /* usage */ core::ParameterUsage::kSample, |
| /* matcher_indices */ MatcherIndicesIndex(52), |
| }, |
| { |
| /* [207] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(56), |
| }, |
| { |
| /* [208] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(912), |
| }, |
| { |
| /* [209] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [210] */ |
| /* usage */ core::ParameterUsage::kSample, |
| /* matcher_indices */ MatcherIndicesIndex(52), |
| }, |
| { |
| /* [211] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(76), |
| }, |
| { |
| /* [212] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(914), |
| }, |
| { |
| /* [213] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [214] */ |
| /* usage */ core::ParameterUsage::kSample, |
| /* matcher_indices */ MatcherIndicesIndex(52), |
| }, |
| { |
| /* [215] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(244), |
| }, |
| { |
| /* [216] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(914), |
| }, |
| { |
| /* [217] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [218] */ |
| /* usage */ core::ParameterUsage::kSample, |
| /* matcher_indices */ MatcherIndicesIndex(52), |
| }, |
| { |
| /* [219] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(253), |
| }, |
| { |
| /* [220] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(912), |
| }, |
| { |
| /* [221] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [222] */ |
| /* usage */ core::ParameterUsage::kSample, |
| /* matcher_indices */ MatcherIndicesIndex(52), |
| }, |
| { |
| /* [223] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(106), |
| }, |
| { |
| /* [224] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(916), |
| }, |
| { |
| /* [225] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [226] */ |
| /* usage */ core::ParameterUsage::kSample, |
| /* matcher_indices */ MatcherIndicesIndex(8), |
| }, |
| { |
| /* [227] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(116), |
| }, |
| { |
| /* [228] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(918), |
| }, |
| { |
| /* [229] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [230] */ |
| /* usage */ core::ParameterUsage::kSample, |
| /* matcher_indices */ MatcherIndicesIndex(8), |
| }, |
| { |
| /* [231] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(262), |
| }, |
| { |
| /* [232] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(916), |
| }, |
| { |
| /* [233] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [234] */ |
| /* usage */ core::ParameterUsage::kSample, |
| /* matcher_indices */ MatcherIndicesIndex(8), |
| }, |
| { |
| /* [235] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(44), |
| }, |
| { |
| /* [236] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(908), |
| }, |
| { |
| /* [237] */ |
| /* usage */ core::ParameterUsage::kComponent, |
| /* matcher_indices */ MatcherIndicesIndex(8), |
| }, |
| { |
| /* [238] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [239] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(65), |
| }, |
| { |
| /* [240] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(801), |
| }, |
| { |
| /* [241] */ |
| /* usage */ core::ParameterUsage::kComponent, |
| /* matcher_indices */ MatcherIndicesIndex(8), |
| }, |
| { |
| /* [242] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [243] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(85), |
| }, |
| { |
| /* [244] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(801), |
| }, |
| { |
| /* [245] */ |
| /* usage */ core::ParameterUsage::kComponent, |
| /* matcher_indices */ MatcherIndicesIndex(8), |
| }, |
| { |
| /* [246] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [247] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(95), |
| }, |
| { |
| /* [248] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(9), |
| }, |
| { |
| /* [249] */ |
| /* usage */ core::ParameterUsage::kComponent, |
| /* matcher_indices */ MatcherIndicesIndex(8), |
| }, |
| { |
| /* [250] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [251] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(0), |
| }, |
| { |
| /* [252] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(908), |
| }, |
| { |
| /* [253] */ |
| /* usage */ core::ParameterUsage::kComponent, |
| /* matcher_indices */ MatcherIndicesIndex(21), |
| }, |
| { |
| /* [254] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [255] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(11), |
| }, |
| { |
| /* [256] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(801), |
| }, |
| { |
| /* [257] */ |
| /* usage */ core::ParameterUsage::kComponent, |
| /* matcher_indices */ MatcherIndicesIndex(21), |
| }, |
| { |
| /* [258] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [259] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(22), |
| }, |
| { |
| /* [260] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(801), |
| }, |
| { |
| /* [261] */ |
| /* usage */ core::ParameterUsage::kComponent, |
| /* matcher_indices */ MatcherIndicesIndex(21), |
| }, |
| { |
| /* [262] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [263] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(33), |
| }, |
| { |
| /* [264] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(9), |
| }, |
| { |
| /* [265] */ |
| /* usage */ core::ParameterUsage::kComponent, |
| /* matcher_indices */ MatcherIndicesIndex(21), |
| }, |
| { |
| /* [266] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [267] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(135), |
| }, |
| { |
| /* [268] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(908), |
| }, |
| { |
| /* [269] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [270] */ |
| /* usage */ core::ParameterUsage::kBias, |
| /* matcher_indices */ MatcherIndicesIndex(2), |
| }, |
| { |
| /* [271] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(44), |
| }, |
| { |
| /* [272] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(908), |
| }, |
| { |
| /* [273] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [274] */ |
| /* usage */ core::ParameterUsage::kConstOffset, |
| /* matcher_indices */ MatcherIndicesIndex(912), |
| }, |
| { |
| /* [275] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(145), |
| }, |
| { |
| /* [276] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(801), |
| }, |
| { |
| /* [277] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [278] */ |
| /* usage */ core::ParameterUsage::kBias, |
| /* matcher_indices */ MatcherIndicesIndex(2), |
| }, |
| { |
| /* [279] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(65), |
| }, |
| { |
| /* [280] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(801), |
| }, |
| { |
| /* [281] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [282] */ |
| /* usage */ core::ParameterUsage::kConstOffset, |
| /* matcher_indices */ MatcherIndicesIndex(912), |
| }, |
| { |
| /* [283] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(155), |
| }, |
| { |
| /* [284] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(801), |
| }, |
| { |
| /* [285] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [286] */ |
| /* usage */ core::ParameterUsage::kBias, |
| /* matcher_indices */ MatcherIndicesIndex(2), |
| }, |
| { |
| /* [287] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(165), |
| }, |
| { |
| /* [288] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(801), |
| }, |
| { |
| /* [289] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [290] */ |
| /* usage */ core::ParameterUsage::kConstOffset, |
| /* matcher_indices */ MatcherIndicesIndex(914), |
| }, |
| { |
| /* [291] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(175), |
| }, |
| { |
| /* [292] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(801), |
| }, |
| { |
| /* [293] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [294] */ |
| /* usage */ core::ParameterUsage::kBias, |
| /* matcher_indices */ MatcherIndicesIndex(2), |
| }, |
| { |
| /* [295] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(185), |
| }, |
| { |
| /* [296] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(9), |
| }, |
| { |
| /* [297] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [298] */ |
| /* usage */ core::ParameterUsage::kBias, |
| /* matcher_indices */ MatcherIndicesIndex(2), |
| }, |
| { |
| /* [299] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(0), |
| }, |
| { |
| /* [300] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(908), |
| }, |
| { |
| /* [301] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [302] */ |
| /* usage */ core::ParameterUsage::kConstOffset, |
| /* matcher_indices */ MatcherIndicesIndex(916), |
| }, |
| { |
| /* [303] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(11), |
| }, |
| { |
| /* [304] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(801), |
| }, |
| { |
| /* [305] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [306] */ |
| /* usage */ core::ParameterUsage::kConstOffset, |
| /* matcher_indices */ MatcherIndicesIndex(916), |
| }, |
| { |
| /* [307] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(135), |
| }, |
| { |
| /* [308] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(801), |
| }, |
| { |
| /* [309] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [310] */ |
| /* usage */ core::ParameterUsage::kBias, |
| /* matcher_indices */ MatcherIndicesIndex(2), |
| }, |
| { |
| /* [311] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(44), |
| }, |
| { |
| /* [312] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(801), |
| }, |
| { |
| /* [313] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [314] */ |
| /* usage */ core::ParameterUsage::kConstOffset, |
| /* matcher_indices */ MatcherIndicesIndex(912), |
| }, |
| { |
| /* [315] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(155), |
| }, |
| { |
| /* [316] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(9), |
| }, |
| { |
| /* [317] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [318] */ |
| /* usage */ core::ParameterUsage::kBias, |
| /* matcher_indices */ MatcherIndicesIndex(2), |
| }, |
| { |
| /* [319] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(165), |
| }, |
| { |
| /* [320] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(9), |
| }, |
| { |
| /* [321] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [322] */ |
| /* usage */ core::ParameterUsage::kConstOffset, |
| /* matcher_indices */ MatcherIndicesIndex(914), |
| }, |
| { |
| /* [323] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(0), |
| }, |
| { |
| /* [324] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(801), |
| }, |
| { |
| /* [325] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [326] */ |
| /* usage */ core::ParameterUsage::kConstOffset, |
| /* matcher_indices */ MatcherIndicesIndex(916), |
| }, |
| { |
| /* [327] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(135), |
| }, |
| { |
| /* [328] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(908), |
| }, |
| { |
| /* [329] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [330] */ |
| /* usage */ core::ParameterUsage::kLod, |
| /* matcher_indices */ MatcherIndicesIndex(2), |
| }, |
| { |
| /* [331] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(145), |
| }, |
| { |
| /* [332] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(801), |
| }, |
| { |
| /* [333] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [334] */ |
| /* usage */ core::ParameterUsage::kLod, |
| /* matcher_indices */ MatcherIndicesIndex(2), |
| }, |
| { |
| /* [335] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(155), |
| }, |
| { |
| /* [336] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(801), |
| }, |
| { |
| /* [337] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [338] */ |
| /* usage */ core::ParameterUsage::kLod, |
| /* matcher_indices */ MatcherIndicesIndex(2), |
| }, |
| { |
| /* [339] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(175), |
| }, |
| { |
| /* [340] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(801), |
| }, |
| { |
| /* [341] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [342] */ |
| /* usage */ core::ParameterUsage::kLod, |
| /* matcher_indices */ MatcherIndicesIndex(2), |
| }, |
| { |
| /* [343] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(185), |
| }, |
| { |
| /* [344] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(9), |
| }, |
| { |
| /* [345] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [346] */ |
| /* usage */ core::ParameterUsage::kLod, |
| /* matcher_indices */ MatcherIndicesIndex(2), |
| }, |
| { |
| /* [347] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(195), |
| }, |
| { |
| /* [348] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(908), |
| }, |
| { |
| /* [349] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [350] */ |
| /* usage */ core::ParameterUsage::kLod, |
| /* matcher_indices */ MatcherIndicesIndex(2), |
| }, |
| { |
| /* [351] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(215), |
| }, |
| { |
| /* [352] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(801), |
| }, |
| { |
| /* [353] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [354] */ |
| /* usage */ core::ParameterUsage::kLod, |
| /* matcher_indices */ MatcherIndicesIndex(2), |
| }, |
| { |
| /* [355] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(205), |
| }, |
| { |
| /* [356] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(801), |
| }, |
| { |
| /* [357] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [358] */ |
| /* usage */ core::ParameterUsage::kLod, |
| /* matcher_indices */ MatcherIndicesIndex(2), |
| }, |
| { |
| /* [359] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(225), |
| }, |
| { |
| /* [360] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(9), |
| }, |
| { |
| /* [361] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [362] */ |
| /* usage */ core::ParameterUsage::kLod, |
| /* matcher_indices */ MatcherIndicesIndex(2), |
| }, |
| { |
| /* [363] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(604), |
| }, |
| { |
| /* [364] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(21), |
| }, |
| { |
| /* [365] */ |
| /* usage */ core::ParameterUsage::kTexel, |
| /* matcher_indices */ MatcherIndicesIndex(9), |
| }, |
| { |
| /* [366] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [367] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(614), |
| }, |
| { |
| /* [368] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(21), |
| }, |
| { |
| /* [369] */ |
| /* usage */ core::ParameterUsage::kTexel, |
| /* matcher_indices */ MatcherIndicesIndex(31), |
| }, |
| { |
| /* [370] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [371] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(623), |
| }, |
| { |
| /* [372] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(21), |
| }, |
| { |
| /* [373] */ |
| /* usage */ core::ParameterUsage::kTexel, |
| /* matcher_indices */ MatcherIndicesIndex(42), |
| }, |
| { |
| /* [374] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [375] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(632), |
| }, |
| { |
| /* [376] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(916), |
| }, |
| { |
| /* [377] */ |
| /* usage */ core::ParameterUsage::kTexel, |
| /* matcher_indices */ MatcherIndicesIndex(9), |
| }, |
| { |
| /* [378] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [379] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(641), |
| }, |
| { |
| /* [380] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(916), |
| }, |
| { |
| /* [381] */ |
| /* usage */ core::ParameterUsage::kTexel, |
| /* matcher_indices */ MatcherIndicesIndex(31), |
| }, |
| { |
| /* [382] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [383] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(650), |
| }, |
| { |
| /* [384] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(916), |
| }, |
| { |
| /* [385] */ |
| /* usage */ core::ParameterUsage::kTexel, |
| /* matcher_indices */ MatcherIndicesIndex(42), |
| }, |
| { |
| /* [386] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [387] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(659), |
| }, |
| { |
| /* [388] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(918), |
| }, |
| { |
| /* [389] */ |
| /* usage */ core::ParameterUsage::kTexel, |
| /* matcher_indices */ MatcherIndicesIndex(9), |
| }, |
| { |
| /* [390] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [391] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(668), |
| }, |
| { |
| /* [392] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(918), |
| }, |
| { |
| /* [393] */ |
| /* usage */ core::ParameterUsage::kTexel, |
| /* matcher_indices */ MatcherIndicesIndex(31), |
| }, |
| { |
| /* [394] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [395] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(677), |
| }, |
| { |
| /* [396] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(918), |
| }, |
| { |
| /* [397] */ |
| /* usage */ core::ParameterUsage::kTexel, |
| /* matcher_indices */ MatcherIndicesIndex(42), |
| }, |
| { |
| /* [398] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [399] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(686), |
| }, |
| { |
| /* [400] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(918), |
| }, |
| { |
| /* [401] */ |
| /* usage */ core::ParameterUsage::kTexel, |
| /* matcher_indices */ MatcherIndicesIndex(9), |
| }, |
| { |
| /* [402] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [403] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(695), |
| }, |
| { |
| /* [404] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(918), |
| }, |
| { |
| /* [405] */ |
| /* usage */ core::ParameterUsage::kTexel, |
| /* matcher_indices */ MatcherIndicesIndex(31), |
| }, |
| { |
| /* [406] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [407] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(704), |
| }, |
| { |
| /* [408] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(918), |
| }, |
| { |
| /* [409] */ |
| /* usage */ core::ParameterUsage::kTexel, |
| /* matcher_indices */ MatcherIndicesIndex(42), |
| }, |
| { |
| /* [410] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [411] */ |
| /* usage */ core::ParameterUsage::kBase, |
| /* matcher_indices */ MatcherIndicesIndex(21), |
| }, |
| { |
| /* [412] */ |
| /* usage */ core::ParameterUsage::kInsert, |
| /* matcher_indices */ MatcherIndicesIndex(21), |
| }, |
| { |
| /* [413] */ |
| /* usage */ core::ParameterUsage::kOffset, |
| /* matcher_indices */ MatcherIndicesIndex(930), |
| }, |
| { |
| /* [414] */ |
| /* usage */ core::ParameterUsage::kCount, |
| /* matcher_indices */ MatcherIndicesIndex(930), |
| }, |
| { |
| /* [415] */ |
| /* usage */ core::ParameterUsage::kBase, |
| /* matcher_indices */ MatcherIndicesIndex(787), |
| }, |
| { |
| /* [416] */ |
| /* usage */ core::ParameterUsage::kInsert, |
| /* matcher_indices */ MatcherIndicesIndex(787), |
| }, |
| { |
| /* [417] */ |
| /* usage */ core::ParameterUsage::kOffset, |
| /* matcher_indices */ MatcherIndicesIndex(930), |
| }, |
| { |
| /* [418] */ |
| /* usage */ core::ParameterUsage::kCount, |
| /* matcher_indices */ MatcherIndicesIndex(930), |
| }, |
| { |
| /* [419] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(864), |
| }, |
| { |
| /* [420] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [421] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [422] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [423] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(818), |
| }, |
| { |
| /* [424] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(823), |
| }, |
| { |
| /* [425] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(813), |
| }, |
| { |
| /* [426] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [427] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(832), |
| }, |
| { |
| /* [428] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(8), |
| }, |
| { |
| /* [429] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(8), |
| }, |
| { |
| /* [430] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(487), |
| }, |
| { |
| /* [431] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(52), |
| }, |
| { |
| /* [432] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [433] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(496), |
| }, |
| { |
| /* [434] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(52), |
| }, |
| { |
| /* [435] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [436] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(505), |
| }, |
| { |
| /* [437] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(52), |
| }, |
| { |
| /* [438] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [439] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(514), |
| }, |
| { |
| /* [440] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(920), |
| }, |
| { |
| /* [441] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [442] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(523), |
| }, |
| { |
| /* [443] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(920), |
| }, |
| { |
| /* [444] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [445] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(532), |
| }, |
| { |
| /* [446] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(920), |
| }, |
| { |
| /* [447] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [448] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(541), |
| }, |
| { |
| /* [449] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(922), |
| }, |
| { |
| /* [450] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [451] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(550), |
| }, |
| { |
| /* [452] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(922), |
| }, |
| { |
| /* [453] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [454] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(559), |
| }, |
| { |
| /* [455] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(922), |
| }, |
| { |
| /* [456] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [457] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(568), |
| }, |
| { |
| /* [458] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(922), |
| }, |
| { |
| /* [459] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [460] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(577), |
| }, |
| { |
| /* [461] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(922), |
| }, |
| { |
| /* [462] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [463] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(586), |
| }, |
| { |
| /* [464] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(922), |
| }, |
| { |
| /* [465] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [466] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(125), |
| }, |
| { |
| /* [467] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(2), |
| }, |
| { |
| /* [468] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [469] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(125), |
| }, |
| { |
| /* [470] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(908), |
| }, |
| { |
| /* [471] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [472] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(195), |
| }, |
| { |
| /* [473] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(801), |
| }, |
| { |
| /* [474] */ |
| /* usage */ core::ParameterUsage::kImageOperands, |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| }, |
| { |
| /* [475] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(829), |
| }, |
| { |
| /* [476] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(21), |
| }, |
| { |
| /* [477] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(21), |
| }, |
| { |
| /* [478] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(878), |
| }, |
| { |
| /* [479] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(872), |
| }, |
| { |
| /* [480] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(872), |
| }, |
| { |
| /* [481] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(902), |
| }, |
| { |
| /* [482] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(893), |
| }, |
| { |
| /* [483] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(896), |
| }, |
| { |
| /* [484] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(899), |
| }, |
| { |
| /* [485] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(787), |
| }, |
| { |
| /* [486] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(787), |
| }, |
| { |
| /* [487] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(21), |
| }, |
| { |
| /* [488] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(787), |
| }, |
| { |
| /* [489] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(787), |
| }, |
| { |
| /* [490] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(787), |
| }, |
| { |
| /* [491] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(848), |
| }, |
| { |
| /* [492] */ |
| /* usage */ core::ParameterUsage::kBase, |
| /* matcher_indices */ MatcherIndicesIndex(21), |
| }, |
| { |
| /* [493] */ |
| /* usage */ core::ParameterUsage::kOffset, |
| /* matcher_indices */ MatcherIndicesIndex(930), |
| }, |
| { |
| /* [494] */ |
| /* usage */ core::ParameterUsage::kCount, |
| /* matcher_indices */ MatcherIndicesIndex(930), |
| }, |
| { |
| /* [495] */ |
| /* usage */ core::ParameterUsage::kBase, |
| /* matcher_indices */ MatcherIndicesIndex(787), |
| }, |
| { |
| /* [496] */ |
| /* usage */ core::ParameterUsage::kOffset, |
| /* matcher_indices */ MatcherIndicesIndex(930), |
| }, |
| { |
| /* [497] */ |
| /* usage */ core::ParameterUsage::kCount, |
| /* matcher_indices */ MatcherIndicesIndex(930), |
| }, |
| { |
| /* [498] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(828), |
| }, |
| { |
| /* [499] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(21), |
| }, |
| { |
| /* [500] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(379), |
| }, |
| { |
| /* [501] */ |
| /* usage */ core::ParameterUsage::kLevel, |
| /* matcher_indices */ MatcherIndicesIndex(52), |
| }, |
| { |
| /* [502] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(388), |
| }, |
| { |
| /* [503] */ |
| /* usage */ core::ParameterUsage::kLevel, |
| /* matcher_indices */ MatcherIndicesIndex(52), |
| }, |
| { |
| /* [504] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(397), |
| }, |
| { |
| /* [505] */ |
| /* usage */ core::ParameterUsage::kLevel, |
| /* matcher_indices */ MatcherIndicesIndex(52), |
| }, |
| { |
| /* [506] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(406), |
| }, |
| { |
| /* [507] */ |
| /* usage */ core::ParameterUsage::kLevel, |
| /* matcher_indices */ MatcherIndicesIndex(52), |
| }, |
| { |
| /* [508] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(415), |
| }, |
| { |
| /* [509] */ |
| /* usage */ core::ParameterUsage::kLevel, |
| /* matcher_indices */ MatcherIndicesIndex(52), |
| }, |
| { |
| /* [510] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(424), |
| }, |
| { |
| /* [511] */ |
| /* usage */ core::ParameterUsage::kLevel, |
| /* matcher_indices */ MatcherIndicesIndex(52), |
| }, |
| { |
| /* [512] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(433), |
| }, |
| { |
| /* [513] */ |
| /* usage */ core::ParameterUsage::kLevel, |
| /* matcher_indices */ MatcherIndicesIndex(8), |
| }, |
| { |
| /* [514] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(442), |
| }, |
| { |
| /* [515] */ |
| /* usage */ core::ParameterUsage::kLevel, |
| /* matcher_indices */ MatcherIndicesIndex(8), |
| }, |
| { |
| /* [516] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(451), |
| }, |
| { |
| /* [517] */ |
| /* usage */ core::ParameterUsage::kLevel, |
| /* matcher_indices */ MatcherIndicesIndex(8), |
| }, |
| { |
| /* [518] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(460), |
| }, |
| { |
| /* [519] */ |
| /* usage */ core::ParameterUsage::kLevel, |
| /* matcher_indices */ MatcherIndicesIndex(8), |
| }, |
| { |
| /* [520] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(595), |
| }, |
| { |
| /* [521] */ |
| /* usage */ core::ParameterUsage::kCoords, |
| /* matcher_indices */ MatcherIndicesIndex(920), |
| }, |
| { |
| /* [522] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(844), |
| }, |
| { |
| /* [523] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(848), |
| }, |
| { |
| /* [524] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(852), |
| }, |
| { |
| /* [525] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(21), |
| }, |
| { |
| /* [526] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(852), |
| }, |
| { |
| /* [527] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(787), |
| }, |
| { |
| /* [528] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(875), |
| }, |
| { |
| /* [529] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(793), |
| }, |
| { |
| /* [530] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(884), |
| }, |
| { |
| /* [531] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(887), |
| }, |
| { |
| /* [532] */ |
| /* usage */ core::ParameterUsage::kX, |
| /* matcher_indices */ MatcherIndicesIndex(21), |
| }, |
| { |
| /* [533] */ |
| /* usage */ core::ParameterUsage::kI, |
| /* matcher_indices */ MatcherIndicesIndex(856), |
| }, |
| { |
| /* [534] */ |
| /* usage */ core::ParameterUsage::kX, |
| /* matcher_indices */ MatcherIndicesIndex(787), |
| }, |
| { |
| /* [535] */ |
| /* usage */ core::ParameterUsage::kI, |
| /* matcher_indices */ MatcherIndicesIndex(785), |
| }, |
| { |
| /* [536] */ |
| /* usage */ core::ParameterUsage::kX, |
| /* matcher_indices */ MatcherIndicesIndex(21), |
| }, |
| { |
| /* [537] */ |
| /* usage */ core::ParameterUsage::kI, |
| /* matcher_indices */ MatcherIndicesIndex(860), |
| }, |
| { |
| /* [538] */ |
| /* usage */ core::ParameterUsage::kX, |
| /* matcher_indices */ MatcherIndicesIndex(875), |
| }, |
| { |
| /* [539] */ |
| /* usage */ core::ParameterUsage::kI, |
| /* matcher_indices */ MatcherIndicesIndex(791), |
| }, |
| { |
| /* [540] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(271), |
| }, |
| { |
| /* [541] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(280), |
| }, |
| { |
| /* [542] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(289), |
| }, |
| { |
| /* [543] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(298), |
| }, |
| { |
| /* [544] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(307), |
| }, |
| { |
| /* [545] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(316), |
| }, |
| { |
| /* [546] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(325), |
| }, |
| { |
| /* [547] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(334), |
| }, |
| { |
| /* [548] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(343), |
| }, |
| { |
| /* [549] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(352), |
| }, |
| { |
| /* [550] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(361), |
| }, |
| { |
| /* [551] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(370), |
| }, |
| { |
| /* [552] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(469), |
| }, |
| { |
| /* [553] */ |
| /* usage */ core::ParameterUsage::kImage, |
| /* matcher_indices */ MatcherIndicesIndex(478), |
| }, |
| { |
| /* [554] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(612), |
| }, |
| { |
| /* [555] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(926), |
| }, |
| { |
| /* [556] */ |
| /* usage */ core::ParameterUsage::kNone, |
| /* matcher_indices */ MatcherIndicesIndex(928), |
| }, |
| }; |
| |
| static_assert(ParameterIndex::CanIndex(kParameters), |
| "ParameterIndex is not large enough to index kParameters"); |
| |
| constexpr TemplateInfo kTemplates[] = { |
| { |
| /* [0] */ |
| /* name */ "D", |
| /* matcher_indices */ MatcherIndicesIndex(2), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [1] */ |
| /* name */ "F", |
| /* matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [2] */ |
| /* name */ "A", |
| /* matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [3] */ |
| /* name */ "Z", |
| /* matcher_indices */ MatcherIndicesIndex(930), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [4] */ |
| /* name */ "T", |
| /* matcher_indices */ MatcherIndicesIndex(932), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [5] */ |
| /* name */ "D", |
| /* matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [6] */ |
| /* name */ "R", |
| /* matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [7] */ |
| /* name */ "S", |
| /* matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [8] */ |
| /* name */ "F", |
| /* matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [9] */ |
| /* name */ "A", |
| /* matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [10] */ |
| /* name */ "R", |
| /* matcher_indices */ MatcherIndicesIndex(930), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [11] */ |
| /* name */ "T", |
| /* matcher_indices */ MatcherIndicesIndex(932), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [12] */ |
| /* name */ "L", |
| /* matcher_indices */ MatcherIndicesIndex(930), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [13] */ |
| /* name */ "S", |
| /* matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [14] */ |
| /* name */ "F", |
| /* matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [15] */ |
| /* name */ "A", |
| /* matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [16] */ |
| /* name */ "R", |
| /* matcher_indices */ MatcherIndicesIndex(930), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [17] */ |
| /* name */ "T", |
| /* matcher_indices */ MatcherIndicesIndex(932), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [18] */ |
| /* name */ "S", |
| /* matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [19] */ |
| /* name */ "F", |
| /* matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [20] */ |
| /* name */ "A", |
| /* matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [21] */ |
| /* name */ "R", |
| /* matcher_indices */ MatcherIndicesIndex(930), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [22] */ |
| /* name */ "L", |
| /* matcher_indices */ MatcherIndicesIndex(930), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [23] */ |
| /* name */ "S", |
| /* matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [24] */ |
| /* name */ "F", |
| /* matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [25] */ |
| /* name */ "A", |
| /* matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [26] */ |
| /* name */ "R", |
| /* matcher_indices */ MatcherIndicesIndex(930), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [27] */ |
| /* name */ "T", |
| /* matcher_indices */ MatcherIndicesIndex(930), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [28] */ |
| /* name */ "U", |
| /* matcher_indices */ MatcherIndicesIndex(930), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [29] */ |
| /* name */ "V", |
| /* matcher_indices */ MatcherIndicesIndex(930), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [30] */ |
| /* name */ "N", |
| /* matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [31] */ |
| /* name */ "T", |
| /* matcher_indices */ MatcherIndicesIndex(931), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [32] */ |
| /* name */ "U", |
| /* matcher_indices */ MatcherIndicesIndex(930), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [33] */ |
| /* name */ "T", |
| /* matcher_indices */ MatcherIndicesIndex(803), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [34] */ |
| /* name */ "K", |
| /* matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [35] */ |
| /* name */ "S", |
| /* matcher_indices */ MatcherIndicesIndex(936), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [36] */ |
| /* name */ "C", |
| /* matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [37] */ |
| /* name */ "R", |
| /* matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [38] */ |
| /* name */ "T", |
| /* matcher_indices */ MatcherIndicesIndex(937), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [39] */ |
| /* name */ "TR", |
| /* matcher_indices */ MatcherIndicesIndex(937), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [40] */ |
| /* name */ "C", |
| /* matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [41] */ |
| /* name */ "R", |
| /* matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [42] */ |
| /* name */ "K", |
| /* matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [43] */ |
| /* name */ "T", |
| /* matcher_indices */ MatcherIndicesIndex(932), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [44] */ |
| /* name */ "C", |
| /* matcher_indices */ MatcherIndicesIndex(930), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [45] */ |
| /* name */ "Z", |
| /* matcher_indices */ MatcherIndicesIndex(930), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [46] */ |
| /* name */ "F", |
| /* matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [47] */ |
| /* name */ "T", |
| /* matcher_indices */ MatcherIndicesIndex(932), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [48] */ |
| /* name */ "C", |
| /* matcher_indices */ MatcherIndicesIndex(930), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [49] */ |
| /* name */ "A", |
| /* matcher_indices */ MatcherIndicesIndex(9), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [50] */ |
| /* name */ "R", |
| /* matcher_indices */ MatcherIndicesIndex(930), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [51] */ |
| /* name */ "T", |
| /* matcher_indices */ MatcherIndicesIndex(932), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [52] */ |
| /* name */ "F", |
| /* matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [53] */ |
| /* name */ "A", |
| /* matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [54] */ |
| /* name */ "R", |
| /* matcher_indices */ MatcherIndicesIndex(930), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [55] */ |
| /* name */ "S", |
| /* matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [56] */ |
| /* name */ "F", |
| /* matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [57] */ |
| /* name */ "A", |
| /* matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [58] */ |
| /* name */ "I", |
| /* matcher_indices */ MatcherIndicesIndex(713), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [59] */ |
| /* name */ "T", |
| /* matcher_indices */ MatcherIndicesIndex(932), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [60] */ |
| /* name */ "S", |
| /* matcher_indices */ MatcherIndicesIndex(933), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [61] */ |
| /* name */ "F", |
| /* matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [62] */ |
| /* name */ "I", |
| /* matcher_indices */ MatcherIndicesIndex(722), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [63] */ |
| /* name */ "T", |
| /* matcher_indices */ MatcherIndicesIndex(932), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [64] */ |
| /* name */ "S", |
| /* matcher_indices */ MatcherIndicesIndex(933), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [65] */ |
| /* name */ "F", |
| /* matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [66] */ |
| /* name */ "I", |
| /* matcher_indices */ MatcherIndicesIndex(731), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [67] */ |
| /* name */ "T", |
| /* matcher_indices */ MatcherIndicesIndex(932), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [68] */ |
| /* name */ "S", |
| /* matcher_indices */ MatcherIndicesIndex(933), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [69] */ |
| /* name */ "F", |
| /* matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [70] */ |
| /* name */ "I", |
| /* matcher_indices */ MatcherIndicesIndex(740), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [71] */ |
| /* name */ "T", |
| /* matcher_indices */ MatcherIndicesIndex(932), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [72] */ |
| /* name */ "S", |
| /* matcher_indices */ MatcherIndicesIndex(933), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [73] */ |
| /* name */ "F", |
| /* matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [74] */ |
| /* name */ "I", |
| /* matcher_indices */ MatcherIndicesIndex(749), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [75] */ |
| /* name */ "T", |
| /* matcher_indices */ MatcherIndicesIndex(932), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [76] */ |
| /* name */ "S", |
| /* matcher_indices */ MatcherIndicesIndex(933), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [77] */ |
| /* name */ "F", |
| /* matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [78] */ |
| /* name */ "I", |
| /* matcher_indices */ MatcherIndicesIndex(758), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [79] */ |
| /* name */ "T", |
| /* matcher_indices */ MatcherIndicesIndex(932), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [80] */ |
| /* name */ "S", |
| /* matcher_indices */ MatcherIndicesIndex(933), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [81] */ |
| /* name */ "F", |
| /* matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [82] */ |
| /* name */ "T", |
| /* matcher_indices */ MatcherIndicesIndex(931), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [83] */ |
| /* name */ "K", |
| /* matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [84] */ |
| /* name */ "C", |
| /* matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [85] */ |
| /* name */ "R", |
| /* matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [86] */ |
| /* name */ "R", |
| /* matcher_indices */ MatcherIndicesIndex(930), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [87] */ |
| /* name */ "T", |
| /* matcher_indices */ MatcherIndicesIndex(930), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [88] */ |
| /* name */ "U", |
| /* matcher_indices */ MatcherIndicesIndex(930), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [89] */ |
| /* name */ "N", |
| /* matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [90] */ |
| /* name */ "T", |
| /* matcher_indices */ MatcherIndicesIndex(934), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [91] */ |
| /* name */ "T", |
| /* matcher_indices */ MatcherIndicesIndex(931), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [92] */ |
| /* name */ "R", |
| /* matcher_indices */ MatcherIndicesIndex(930), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [93] */ |
| /* name */ "N", |
| /* matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [94] */ |
| /* name */ "S", |
| /* matcher_indices */ MatcherIndicesIndex(935), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [95] */ |
| /* name */ "R", |
| /* matcher_indices */ MatcherIndicesIndex(930), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [96] */ |
| /* name */ "A", |
| /* matcher_indices */ MatcherIndicesIndex(930), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [97] */ |
| /* name */ "B", |
| /* matcher_indices */ MatcherIndicesIndex(930), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [98] */ |
| /* name */ "N", |
| /* matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [99] */ |
| /* name */ "T", |
| /* matcher_indices */ MatcherIndicesIndex(930), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [100] */ |
| /* name */ "U", |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [101] */ |
| /* name */ "S", |
| /* matcher_indices */ MatcherIndicesIndex(2), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [102] */ |
| /* name */ "T", |
| /* matcher_indices */ MatcherIndicesIndex(932), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [103] */ |
| /* name */ "C", |
| /* matcher_indices */ MatcherIndicesIndex(930), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [104] */ |
| /* name */ "F", |
| /* matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [105] */ |
| /* name */ "A", |
| /* matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [106] */ |
| /* name */ "R", |
| /* matcher_indices */ MatcherIndicesIndex(930), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [107] */ |
| /* name */ "F", |
| /* matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [108] */ |
| /* name */ "A", |
| /* matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [109] */ |
| /* name */ "F", |
| /* matcher_indices */ MatcherIndicesIndex(32), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [110] */ |
| /* name */ "A", |
| /* matcher_indices */ MatcherIndicesIndex(9), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [111] */ |
| /* name */ "C", |
| /* matcher_indices */ MatcherIndicesIndex(930), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [112] */ |
| /* name */ "F", |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [113] */ |
| /* name */ "A", |
| /* matcher_indices */ MatcherIndicesIndex(9), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [114] */ |
| /* name */ "C", |
| /* matcher_indices */ MatcherIndicesIndex(930), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [115] */ |
| /* name */ "F", |
| /* matcher_indices */ MatcherIndicesIndex(630), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [116] */ |
| /* name */ "A", |
| /* matcher_indices */ MatcherIndicesIndex(9), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [117] */ |
| /* name */ "C", |
| /* matcher_indices */ MatcherIndicesIndex(930), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [118] */ |
| /* name */ "T", |
| /* matcher_indices */ MatcherIndicesIndex(932), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [119] */ |
| /* name */ "Z", |
| /* matcher_indices */ MatcherIndicesIndex(930), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [120] */ |
| /* name */ "F", |
| /* matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [121] */ |
| /* name */ "I", |
| /* matcher_indices */ MatcherIndicesIndex(106), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [122] */ |
| /* name */ "S", |
| /* matcher_indices */ MatcherIndicesIndex(933), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [123] */ |
| /* name */ "F", |
| /* matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [124] */ |
| /* name */ "I", |
| /* matcher_indices */ MatcherIndicesIndex(116), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [125] */ |
| /* name */ "S", |
| /* matcher_indices */ MatcherIndicesIndex(933), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [126] */ |
| /* name */ "F", |
| /* matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [127] */ |
| /* name */ "I", |
| /* matcher_indices */ MatcherIndicesIndex(767), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [128] */ |
| /* name */ "S", |
| /* matcher_indices */ MatcherIndicesIndex(933), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [129] */ |
| /* name */ "F", |
| /* matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [130] */ |
| /* name */ "I", |
| /* matcher_indices */ MatcherIndicesIndex(776), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [131] */ |
| /* name */ "S", |
| /* matcher_indices */ MatcherIndicesIndex(933), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [132] */ |
| /* name */ "F", |
| /* matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [133] */ |
| /* name */ "T", |
| /* matcher_indices */ MatcherIndicesIndex(931), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [134] */ |
| /* name */ "N", |
| /* matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [135] */ |
| /* name */ "M", |
| /* matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [136] */ |
| /* name */ "R", |
| /* matcher_indices */ MatcherIndicesIndex(930), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [137] */ |
| /* name */ "T", |
| /* matcher_indices */ MatcherIndicesIndex(930), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [138] */ |
| /* name */ "N", |
| /* matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [139] */ |
| /* name */ "T", |
| /* matcher_indices */ MatcherIndicesIndex(931), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [140] */ |
| /* name */ "N", |
| /* matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [141] */ |
| /* name */ "S", |
| /* matcher_indices */ MatcherIndicesIndex(935), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [142] */ |
| /* name */ "T", |
| /* matcher_indices */ MatcherIndicesIndex(931), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [143] */ |
| /* name */ "R", |
| /* matcher_indices */ MatcherIndicesIndex(930), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [144] */ |
| /* name */ "S", |
| /* matcher_indices */ MatcherIndicesIndex(935), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [145] */ |
| /* name */ "R", |
| /* matcher_indices */ MatcherIndicesIndex(930), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [146] */ |
| /* name */ "T", |
| /* matcher_indices */ MatcherIndicesIndex(931), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [147] */ |
| /* name */ "N", |
| /* matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [148] */ |
| /* name */ "R", |
| /* matcher_indices */ MatcherIndicesIndex(931), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [149] */ |
| /* name */ "T", |
| /* matcher_indices */ MatcherIndicesIndex(930), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [150] */ |
| /* name */ "N", |
| /* matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [151] */ |
| /* name */ "R", |
| /* matcher_indices */ MatcherIndicesIndex(930), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [152] */ |
| /* name */ "A", |
| /* matcher_indices */ MatcherIndicesIndex(930), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [153] */ |
| /* name */ "N", |
| /* matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [154] */ |
| /* name */ "I", |
| /* matcher_indices */ MatcherIndicesIndex(43), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [155] */ |
| /* name */ "A", |
| /* matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| { |
| /* [156] */ |
| /* name */ "T", |
| /* matcher_indices */ MatcherIndicesIndex(931), |
| /* kind */ TemplateInfo::Kind::kType, |
| }, |
| { |
| /* [157] */ |
| /* name */ "S", |
| /* matcher_indices */ MatcherIndicesIndex(935), |
| /* kind */ TemplateInfo::Kind::kNumber, |
| }, |
| }; |
| |
| static_assert(TemplateIndex::CanIndex(kTemplates), |
| "TemplateIndex is not large enough to index kTemplates"); |
| |
| constexpr OverloadInfo kOverloads[] = { |
| { |
| /* [0] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 3, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(51), |
| /* parameters */ ParameterIndex(466), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [1] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 3, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(51), |
| /* parameters */ ParameterIndex(102), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [2] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(51), |
| /* parameters */ ParameterIndex(267), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [3] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 5, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(118), |
| /* parameters */ ParameterIndex(77), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [4] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(118), |
| /* parameters */ ParameterIndex(271), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [5] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 3, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(51), |
| /* parameters */ ParameterIndex(112), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [6] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(51), |
| /* parameters */ ParameterIndex(275), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [7] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(118), |
| /* parameters */ ParameterIndex(279), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [8] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 5, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(118), |
| /* parameters */ ParameterIndex(82), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [9] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 3, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(51), |
| /* parameters */ ParameterIndex(122), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [10] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(51), |
| /* parameters */ ParameterIndex(283), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [11] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 5, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(118), |
| /* parameters */ ParameterIndex(87), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [12] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(118), |
| /* parameters */ ParameterIndex(287), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [13] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 3, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(51), |
| /* parameters */ ParameterIndex(132), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [14] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(51), |
| /* parameters */ ParameterIndex(291), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [15] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 3, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(51), |
| /* parameters */ ParameterIndex(137), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [16] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(51), |
| /* parameters */ ParameterIndex(295), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [17] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 3, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 1, |
| /* templates */ TemplateIndex(1), |
| /* parameters */ ParameterIndex(347), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [18] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(45), |
| /* parameters */ ParameterIndex(299), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [19] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 3, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 1, |
| /* templates */ TemplateIndex(1), |
| /* parameters */ ParameterIndex(355), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [20] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 3, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 1, |
| /* templates */ TemplateIndex(1), |
| /* parameters */ ParameterIndex(351), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [21] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(45), |
| /* parameters */ ParameterIndex(303), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [22] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 3, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 1, |
| /* templates */ TemplateIndex(1), |
| /* parameters */ ParameterIndex(359), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [23] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(51), |
| /* parameters */ ParameterIndex(327), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [24] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 5, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(51), |
| /* parameters */ ParameterIndex(102), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [25] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 5, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(118), |
| /* parameters */ ParameterIndex(107), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [26] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 6, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(118), |
| /* parameters */ ParameterIndex(17), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [27] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(51), |
| /* parameters */ ParameterIndex(331), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [28] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 5, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(51), |
| /* parameters */ ParameterIndex(112), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [29] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 5, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(118), |
| /* parameters */ ParameterIndex(117), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [30] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 6, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(118), |
| /* parameters */ ParameterIndex(23), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [31] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(51), |
| /* parameters */ ParameterIndex(335), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [32] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 5, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(51), |
| /* parameters */ ParameterIndex(122), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [33] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 5, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(118), |
| /* parameters */ ParameterIndex(127), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [34] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 6, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(118), |
| /* parameters */ ParameterIndex(29), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [35] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(51), |
| /* parameters */ ParameterIndex(339), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [36] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 5, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(51), |
| /* parameters */ ParameterIndex(132), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [37] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(51), |
| /* parameters */ ParameterIndex(343), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [38] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 5, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(51), |
| /* parameters */ ParameterIndex(137), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [39] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 1, |
| /* templates */ TemplateIndex(1), |
| /* parameters */ ParameterIndex(347), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [40] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 5, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(45), |
| /* parameters */ ParameterIndex(142), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [41] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 1, |
| /* templates */ TemplateIndex(1), |
| /* parameters */ ParameterIndex(351), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [42] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 5, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(45), |
| /* parameters */ ParameterIndex(147), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [43] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 1, |
| /* templates */ TemplateIndex(1), |
| /* parameters */ ParameterIndex(355), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [44] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 1, |
| /* templates */ TemplateIndex(1), |
| /* parameters */ ParameterIndex(359), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [45] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 3, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(109), |
| /* parameters */ ParameterIndex(430), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [46] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 3, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(112), |
| /* parameters */ ParameterIndex(433), |
| /* return_matcher_indices */ MatcherIndicesIndex(31), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [47] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 3, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(115), |
| /* parameters */ ParameterIndex(436), |
| /* return_matcher_indices */ MatcherIndicesIndex(42), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [48] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 3, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(109), |
| /* parameters */ ParameterIndex(439), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [49] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 3, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(112), |
| /* parameters */ ParameterIndex(442), |
| /* return_matcher_indices */ MatcherIndicesIndex(31), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [50] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 3, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(115), |
| /* parameters */ ParameterIndex(445), |
| /* return_matcher_indices */ MatcherIndicesIndex(42), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [51] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 3, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(109), |
| /* parameters */ ParameterIndex(448), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [52] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 3, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(112), |
| /* parameters */ ParameterIndex(451), |
| /* return_matcher_indices */ MatcherIndicesIndex(31), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [53] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 3, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(115), |
| /* parameters */ ParameterIndex(454), |
| /* return_matcher_indices */ MatcherIndicesIndex(42), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [54] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 3, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(109), |
| /* parameters */ ParameterIndex(457), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [55] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 3, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(112), |
| /* parameters */ ParameterIndex(460), |
| /* return_matcher_indices */ MatcherIndicesIndex(31), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [56] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 3, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(115), |
| /* parameters */ ParameterIndex(463), |
| /* return_matcher_indices */ MatcherIndicesIndex(42), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [57] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 2, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 4, |
| /* templates */ TemplateIndex(46), |
| /* parameters */ ParameterIndex(520), |
| /* return_matcher_indices */ MatcherIndicesIndex(53), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [58] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(102), |
| /* parameters */ ParameterIndex(235), |
| /* return_matcher_indices */ MatcherIndicesIndex(20), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [59] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 5, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 4, |
| /* templates */ TemplateIndex(43), |
| /* parameters */ ParameterIndex(57), |
| /* return_matcher_indices */ MatcherIndicesIndex(20), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [60] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(102), |
| /* parameters */ ParameterIndex(239), |
| /* return_matcher_indices */ MatcherIndicesIndex(20), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [61] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 5, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 4, |
| /* templates */ TemplateIndex(43), |
| /* parameters */ ParameterIndex(62), |
| /* return_matcher_indices */ MatcherIndicesIndex(20), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [62] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(102), |
| /* parameters */ ParameterIndex(243), |
| /* return_matcher_indices */ MatcherIndicesIndex(20), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [63] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(102), |
| /* parameters */ ParameterIndex(247), |
| /* return_matcher_indices */ MatcherIndicesIndex(20), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [64] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(103), |
| /* parameters */ ParameterIndex(251), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [65] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 5, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(44), |
| /* parameters */ ParameterIndex(67), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [66] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(103), |
| /* parameters */ ParameterIndex(255), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [67] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 5, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(44), |
| /* parameters */ ParameterIndex(72), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [68] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(103), |
| /* parameters */ ParameterIndex(259), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [69] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(103), |
| /* parameters */ ParameterIndex(263), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [70] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 1, |
| /* num_explicit_templates */ 1, |
| /* num_templates */ 4, |
| /* templates */ TemplateIndex(50), |
| /* parameters */ ParameterIndex(540), |
| /* return_matcher_indices */ MatcherIndicesIndex(21), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [71] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 1, |
| /* num_explicit_templates */ 1, |
| /* num_templates */ 4, |
| /* templates */ TemplateIndex(50), |
| /* parameters */ ParameterIndex(541), |
| /* return_matcher_indices */ MatcherIndicesIndex(916), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [72] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 1, |
| /* num_explicit_templates */ 1, |
| /* num_templates */ 4, |
| /* templates */ TemplateIndex(50), |
| /* parameters */ ParameterIndex(542), |
| /* return_matcher_indices */ MatcherIndicesIndex(918), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [73] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 1, |
| /* num_explicit_templates */ 1, |
| /* num_templates */ 4, |
| /* templates */ TemplateIndex(50), |
| /* parameters */ ParameterIndex(543), |
| /* return_matcher_indices */ MatcherIndicesIndex(918), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [74] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 1, |
| /* num_explicit_templates */ 1, |
| /* num_templates */ 4, |
| /* templates */ TemplateIndex(50), |
| /* parameters */ ParameterIndex(544), |
| /* return_matcher_indices */ MatcherIndicesIndex(916), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [75] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 1, |
| /* num_explicit_templates */ 1, |
| /* num_templates */ 4, |
| /* templates */ TemplateIndex(50), |
| /* parameters */ ParameterIndex(545), |
| /* return_matcher_indices */ MatcherIndicesIndex(918), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [76] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 1, |
| /* num_explicit_templates */ 1, |
| /* num_templates */ 5, |
| /* templates */ TemplateIndex(16), |
| /* parameters */ ParameterIndex(546), |
| /* return_matcher_indices */ MatcherIndicesIndex(916), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [77] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 1, |
| /* num_explicit_templates */ 1, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(106), |
| /* parameters */ ParameterIndex(547), |
| /* return_matcher_indices */ MatcherIndicesIndex(916), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [78] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 1, |
| /* num_explicit_templates */ 1, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(106), |
| /* parameters */ ParameterIndex(548), |
| /* return_matcher_indices */ MatcherIndicesIndex(918), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [79] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 1, |
| /* num_explicit_templates */ 1, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(106), |
| /* parameters */ ParameterIndex(549), |
| /* return_matcher_indices */ MatcherIndicesIndex(916), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [80] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 1, |
| /* num_explicit_templates */ 1, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(106), |
| /* parameters */ ParameterIndex(550), |
| /* return_matcher_indices */ MatcherIndicesIndex(918), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [81] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 1, |
| /* num_explicit_templates */ 1, |
| /* num_templates */ 4, |
| /* templates */ TemplateIndex(54), |
| /* parameters */ ParameterIndex(551), |
| /* return_matcher_indices */ MatcherIndicesIndex(916), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [82] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(103), |
| /* parameters */ ParameterIndex(363), |
| /* return_matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [83] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(103), |
| /* parameters */ ParameterIndex(367), |
| /* return_matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [84] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(103), |
| /* parameters */ ParameterIndex(371), |
| /* return_matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [85] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(103), |
| /* parameters */ ParameterIndex(375), |
| /* return_matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [86] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(103), |
| /* parameters */ ParameterIndex(379), |
| /* return_matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [87] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(103), |
| /* parameters */ ParameterIndex(383), |
| /* return_matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [88] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(103), |
| /* parameters */ ParameterIndex(387), |
| /* return_matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [89] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(103), |
| /* parameters */ ParameterIndex(391), |
| /* return_matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [90] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(103), |
| /* parameters */ ParameterIndex(395), |
| /* return_matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [91] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(103), |
| /* parameters */ ParameterIndex(399), |
| /* return_matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [92] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(103), |
| /* parameters */ ParameterIndex(403), |
| /* return_matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [93] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(103), |
| /* parameters */ ParameterIndex(407), |
| /* return_matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [94] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 3, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(51), |
| /* parameters */ ParameterIndex(469), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [95] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 3, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(51), |
| /* parameters */ ParameterIndex(307), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [96] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(51), |
| /* parameters */ ParameterIndex(307), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [97] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 5, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(118), |
| /* parameters */ ParameterIndex(92), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [98] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(118), |
| /* parameters */ ParameterIndex(311), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [99] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 3, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(51), |
| /* parameters */ ParameterIndex(315), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [100] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(51), |
| /* parameters */ ParameterIndex(315), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [101] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 5, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(118), |
| /* parameters */ ParameterIndex(97), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [102] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(118), |
| /* parameters */ ParameterIndex(319), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [103] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 3, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 1, |
| /* templates */ TemplateIndex(1), |
| /* parameters */ ParameterIndex(472), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [104] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(45), |
| /* parameters */ ParameterIndex(323), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [105] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 2, |
| /* num_explicit_templates */ 1, |
| /* num_templates */ 6, |
| /* templates */ TemplateIndex(10), |
| /* parameters */ ParameterIndex(500), |
| /* return_matcher_indices */ MatcherIndicesIndex(21), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [106] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 2, |
| /* num_explicit_templates */ 1, |
| /* num_templates */ 6, |
| /* templates */ TemplateIndex(10), |
| /* parameters */ ParameterIndex(502), |
| /* return_matcher_indices */ MatcherIndicesIndex(916), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [107] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 2, |
| /* num_explicit_templates */ 1, |
| /* num_templates */ 6, |
| /* templates */ TemplateIndex(10), |
| /* parameters */ ParameterIndex(504), |
| /* return_matcher_indices */ MatcherIndicesIndex(918), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [108] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 2, |
| /* num_explicit_templates */ 1, |
| /* num_templates */ 6, |
| /* templates */ TemplateIndex(10), |
| /* parameters */ ParameterIndex(506), |
| /* return_matcher_indices */ MatcherIndicesIndex(918), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [109] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 2, |
| /* num_explicit_templates */ 1, |
| /* num_templates */ 6, |
| /* templates */ TemplateIndex(10), |
| /* parameters */ ParameterIndex(508), |
| /* return_matcher_indices */ MatcherIndicesIndex(916), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [110] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 2, |
| /* num_explicit_templates */ 1, |
| /* num_templates */ 6, |
| /* templates */ TemplateIndex(10), |
| /* parameters */ ParameterIndex(510), |
| /* return_matcher_indices */ MatcherIndicesIndex(918), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [111] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 2, |
| /* num_explicit_templates */ 1, |
| /* num_templates */ 5, |
| /* templates */ TemplateIndex(21), |
| /* parameters */ ParameterIndex(512), |
| /* return_matcher_indices */ MatcherIndicesIndex(916), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [112] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 2, |
| /* num_explicit_templates */ 1, |
| /* num_templates */ 5, |
| /* templates */ TemplateIndex(21), |
| /* parameters */ ParameterIndex(514), |
| /* return_matcher_indices */ MatcherIndicesIndex(918), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [113] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 2, |
| /* num_explicit_templates */ 1, |
| /* num_templates */ 5, |
| /* templates */ TemplateIndex(21), |
| /* parameters */ ParameterIndex(516), |
| /* return_matcher_indices */ MatcherIndicesIndex(916), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [114] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 2, |
| /* num_explicit_templates */ 1, |
| /* num_templates */ 5, |
| /* templates */ TemplateIndex(21), |
| /* parameters */ ParameterIndex(518), |
| /* return_matcher_indices */ MatcherIndicesIndex(918), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [115] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 2, |
| /* num_explicit_templates */ 1, |
| /* num_templates */ 4, |
| /* templates */ TemplateIndex(58), |
| /* parameters */ ParameterIndex(6), |
| /* return_matcher_indices */ MatcherIndicesIndex(924), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [116] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 2, |
| /* num_explicit_templates */ 1, |
| /* num_templates */ 4, |
| /* templates */ TemplateIndex(62), |
| /* parameters */ ParameterIndex(6), |
| /* return_matcher_indices */ MatcherIndicesIndex(924), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [117] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 2, |
| /* num_explicit_templates */ 1, |
| /* num_templates */ 4, |
| /* templates */ TemplateIndex(66), |
| /* parameters */ ParameterIndex(6), |
| /* return_matcher_indices */ MatcherIndicesIndex(924), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [118] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 2, |
| /* num_explicit_templates */ 1, |
| /* num_templates */ 4, |
| /* templates */ TemplateIndex(70), |
| /* parameters */ ParameterIndex(6), |
| /* return_matcher_indices */ MatcherIndicesIndex(924), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [119] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 2, |
| /* num_explicit_templates */ 1, |
| /* num_templates */ 4, |
| /* templates */ TemplateIndex(74), |
| /* parameters */ ParameterIndex(6), |
| /* return_matcher_indices */ MatcherIndicesIndex(924), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [120] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 2, |
| /* num_explicit_templates */ 1, |
| /* num_templates */ 4, |
| /* templates */ TemplateIndex(78), |
| /* parameters */ ParameterIndex(6), |
| /* return_matcher_indices */ MatcherIndicesIndex(924), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [121] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 2, |
| /* num_explicit_templates */ 1, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(121), |
| /* parameters */ ParameterIndex(13), |
| /* return_matcher_indices */ MatcherIndicesIndex(924), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [122] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 2, |
| /* num_explicit_templates */ 1, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(124), |
| /* parameters */ ParameterIndex(13), |
| /* return_matcher_indices */ MatcherIndicesIndex(924), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [123] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 2, |
| /* num_explicit_templates */ 1, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(127), |
| /* parameters */ ParameterIndex(13), |
| /* return_matcher_indices */ MatcherIndicesIndex(924), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [124] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 2, |
| /* num_explicit_templates */ 1, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(130), |
| /* parameters */ ParameterIndex(13), |
| /* return_matcher_indices */ MatcherIndicesIndex(924), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [125] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 4, |
| /* templates */ TemplateIndex(43), |
| /* parameters */ ParameterIndex(203), |
| /* return_matcher_indices */ MatcherIndicesIndex(20), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [126] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 4, |
| /* templates */ TemplateIndex(43), |
| /* parameters */ ParameterIndex(207), |
| /* return_matcher_indices */ MatcherIndicesIndex(20), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [127] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 4, |
| /* templates */ TemplateIndex(43), |
| /* parameters */ ParameterIndex(211), |
| /* return_matcher_indices */ MatcherIndicesIndex(20), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [128] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 4, |
| /* templates */ TemplateIndex(43), |
| /* parameters */ ParameterIndex(215), |
| /* return_matcher_indices */ MatcherIndicesIndex(20), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [129] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 4, |
| /* templates */ TemplateIndex(43), |
| /* parameters */ ParameterIndex(219), |
| /* return_matcher_indices */ MatcherIndicesIndex(20), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [130] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(44), |
| /* parameters */ ParameterIndex(223), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [131] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(44), |
| /* parameters */ ParameterIndex(227), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [132] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(44), |
| /* parameters */ ParameterIndex(231), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [133] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(0), |
| /* parameters */ ParameterIndex(47), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [134] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 5, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 4, |
| /* templates */ TemplateIndex(0), |
| /* parameters */ ParameterIndex(47), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [135] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(0), |
| /* parameters */ ParameterIndex(52), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [136] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 5, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 4, |
| /* templates */ TemplateIndex(0), |
| /* parameters */ ParameterIndex(52), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [137] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(0), |
| /* parameters */ ParameterIndex(195), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [138] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(0), |
| /* parameters */ ParameterIndex(199), |
| /* return_matcher_indices */ MatcherIndicesIndex(9), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [139] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 1, |
| /* templates */ TemplateIndex(1), |
| /* parameters */ ParameterIndex(162), |
| /* return_matcher_indices */ MatcherIndicesIndex(2), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [140] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 5, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(45), |
| /* parameters */ ParameterIndex(152), |
| /* return_matcher_indices */ MatcherIndicesIndex(2), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [141] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 1, |
| /* templates */ TemplateIndex(1), |
| /* parameters */ ParameterIndex(167), |
| /* return_matcher_indices */ MatcherIndicesIndex(2), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [142] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 5, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(45), |
| /* parameters */ ParameterIndex(157), |
| /* return_matcher_indices */ MatcherIndicesIndex(2), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [143] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 1, |
| /* templates */ TemplateIndex(1), |
| /* parameters */ ParameterIndex(172), |
| /* return_matcher_indices */ MatcherIndicesIndex(2), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [144] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 1, |
| /* templates */ TemplateIndex(1), |
| /* parameters */ ParameterIndex(177), |
| /* return_matcher_indices */ MatcherIndicesIndex(2), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [145] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 5, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 1, |
| /* templates */ TemplateIndex(1), |
| /* parameters */ ParameterIndex(162), |
| /* return_matcher_indices */ MatcherIndicesIndex(2), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [146] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 6, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(45), |
| /* parameters */ ParameterIndex(35), |
| /* return_matcher_indices */ MatcherIndicesIndex(2), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [147] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 5, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 1, |
| /* templates */ TemplateIndex(1), |
| /* parameters */ ParameterIndex(167), |
| /* return_matcher_indices */ MatcherIndicesIndex(2), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [148] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 6, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(45), |
| /* parameters */ ParameterIndex(41), |
| /* return_matcher_indices */ MatcherIndicesIndex(2), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [149] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 5, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 1, |
| /* templates */ TemplateIndex(1), |
| /* parameters */ ParameterIndex(172), |
| /* return_matcher_indices */ MatcherIndicesIndex(2), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [150] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 5, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 1, |
| /* templates */ TemplateIndex(1), |
| /* parameters */ ParameterIndex(177), |
| /* return_matcher_indices */ MatcherIndicesIndex(2), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [151] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 1, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 1, |
| /* templates */ TemplateIndex(31), |
| /* parameters */ ParameterIndex(554), |
| /* return_matcher_indices */ MatcherIndicesIndex(612), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [152] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 1, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 1, |
| /* templates */ TemplateIndex(31), |
| /* parameters */ ParameterIndex(555), |
| /* return_matcher_indices */ MatcherIndicesIndex(926), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [153] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 1, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 1, |
| /* templates */ TemplateIndex(31), |
| /* parameters */ ParameterIndex(556), |
| /* return_matcher_indices */ MatcherIndicesIndex(928), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [154] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 3, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(99), |
| /* parameters */ ParameterIndex(0), |
| /* return_matcher_indices */ MatcherIndicesIndex(21), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [155] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 3, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(99), |
| /* parameters */ ParameterIndex(427), |
| /* return_matcher_indices */ MatcherIndicesIndex(21), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [156] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(99), |
| /* parameters */ ParameterIndex(187), |
| /* return_matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [157] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(99), |
| /* parameters */ ParameterIndex(191), |
| /* return_matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [158] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(99), |
| /* parameters */ ParameterIndex(187), |
| /* return_matcher_indices */ MatcherIndicesIndex(21), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [159] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(99), |
| /* parameters */ ParameterIndex(191), |
| /* return_matcher_indices */ MatcherIndicesIndex(21), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [160] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 6, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(99), |
| /* parameters */ ParameterIndex(0), |
| /* return_matcher_indices */ MatcherIndicesIndex(21), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [161] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 6, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(99), |
| /* parameters */ ParameterIndex(8), |
| /* return_matcher_indices */ MatcherIndicesIndex(21), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [162] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 3, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 1, |
| /* templates */ TemplateIndex(90), |
| /* parameters */ ParameterIndex(475), |
| /* return_matcher_indices */ MatcherIndicesIndex(21), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [163] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 3, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(89), |
| /* parameters */ ParameterIndex(478), |
| /* return_matcher_indices */ MatcherIndicesIndex(872), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [164] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 1, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 1, |
| /* templates */ TemplateIndex(31), |
| /* parameters */ ParameterIndex(4), |
| /* return_matcher_indices */ MatcherIndicesIndex(21), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [165] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 1, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(30), |
| /* parameters */ ParameterIndex(479), |
| /* return_matcher_indices */ MatcherIndicesIndex(872), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [166] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 1, |
| /* num_explicit_templates */ 1, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(26), |
| /* parameters */ ParameterIndex(1), |
| /* return_matcher_indices */ MatcherIndicesIndex(21), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [167] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 1, |
| /* num_explicit_templates */ 1, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(136), |
| /* parameters */ ParameterIndex(529), |
| /* return_matcher_indices */ MatcherIndicesIndex(875), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [168] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 2, |
| /* num_explicit_templates */ 1, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(26), |
| /* parameters */ ParameterIndex(14), |
| /* return_matcher_indices */ MatcherIndicesIndex(21), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [169] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 2, |
| /* num_explicit_templates */ 1, |
| /* num_templates */ 4, |
| /* templates */ TemplateIndex(86), |
| /* parameters */ ParameterIndex(530), |
| /* return_matcher_indices */ MatcherIndicesIndex(881), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [170] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 3, |
| /* num_explicit_templates */ 1, |
| /* num_templates */ 4, |
| /* templates */ TemplateIndex(26), |
| /* parameters */ ParameterIndex(14), |
| /* return_matcher_indices */ MatcherIndicesIndex(21), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [171] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 3, |
| /* num_explicit_templates */ 1, |
| /* num_templates */ 5, |
| /* templates */ TemplateIndex(26), |
| /* parameters */ ParameterIndex(482), |
| /* return_matcher_indices */ MatcherIndicesIndex(890), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [172] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 3, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 1, |
| /* templates */ TemplateIndex(31), |
| /* parameters */ ParameterIndex(4), |
| /* return_matcher_indices */ MatcherIndicesIndex(21), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [173] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 3, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(133), |
| /* parameters */ ParameterIndex(485), |
| /* return_matcher_indices */ MatcherIndicesIndex(787), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [174] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 2, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 1, |
| /* templates */ TemplateIndex(31), |
| /* parameters */ ParameterIndex(4), |
| /* return_matcher_indices */ MatcherIndicesIndex(21), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [175] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 2, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(133), |
| /* parameters */ ParameterIndex(485), |
| /* return_matcher_indices */ MatcherIndicesIndex(787), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [176] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 3, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 1, |
| /* templates */ TemplateIndex(31), |
| /* parameters */ ParameterIndex(4), |
| /* return_matcher_indices */ MatcherIndicesIndex(21), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [177] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 3, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(133), |
| /* parameters */ ParameterIndex(488), |
| /* return_matcher_indices */ MatcherIndicesIndex(787), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [178] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 2, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(31), |
| /* parameters */ ParameterIndex(13), |
| /* return_matcher_indices */ MatcherIndicesIndex(21), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [179] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 2, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(30), |
| /* parameters */ ParameterIndex(480), |
| /* return_matcher_indices */ MatcherIndicesIndex(872), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [180] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 2, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(156), |
| /* parameters */ ParameterIndex(532), |
| /* return_matcher_indices */ MatcherIndicesIndex(21), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [181] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 2, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(139), |
| /* parameters */ ParameterIndex(534), |
| /* return_matcher_indices */ MatcherIndicesIndex(787), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [182] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 2, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(142), |
| /* parameters */ ParameterIndex(536), |
| /* return_matcher_indices */ MatcherIndicesIndex(21), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [183] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 2, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 4, |
| /* templates */ TemplateIndex(91), |
| /* parameters */ ParameterIndex(538), |
| /* return_matcher_indices */ MatcherIndicesIndex(875), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [184] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 1, |
| /* templates */ TemplateIndex(27), |
| /* parameters */ ParameterIndex(411), |
| /* return_matcher_indices */ MatcherIndicesIndex(21), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [185] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(137), |
| /* parameters */ ParameterIndex(415), |
| /* return_matcher_indices */ MatcherIndicesIndex(787), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [186] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 3, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 1, |
| /* templates */ TemplateIndex(27), |
| /* parameters */ ParameterIndex(492), |
| /* return_matcher_indices */ MatcherIndicesIndex(21), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [187] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 3, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(137), |
| /* parameters */ ParameterIndex(495), |
| /* return_matcher_indices */ MatcherIndicesIndex(787), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [188] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 2, |
| /* num_explicit_templates */ 1, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(95), |
| /* parameters */ ParameterIndex(14), |
| /* return_matcher_indices */ MatcherIndicesIndex(21), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [189] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 2, |
| /* num_explicit_templates */ 1, |
| /* num_templates */ 4, |
| /* templates */ TemplateIndex(95), |
| /* parameters */ ParameterIndex(530), |
| /* return_matcher_indices */ MatcherIndicesIndex(881), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [190] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 2, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(96), |
| /* parameters */ ParameterIndex(13), |
| /* return_matcher_indices */ MatcherIndicesIndex(829), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [191] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 2, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(96), |
| /* parameters */ ParameterIndex(528), |
| /* return_matcher_indices */ MatcherIndicesIndex(905), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [192] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 1, |
| /* num_explicit_templates */ 1, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(145), |
| /* parameters */ ParameterIndex(1), |
| /* return_matcher_indices */ MatcherIndicesIndex(21), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [193] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 1, |
| /* num_explicit_templates */ 1, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(145), |
| /* parameters */ ParameterIndex(529), |
| /* return_matcher_indices */ MatcherIndicesIndex(875), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [194] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 1, |
| /* num_explicit_templates */ 1, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(148), |
| /* parameters */ ParameterIndex(1), |
| /* return_matcher_indices */ MatcherIndicesIndex(21), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [195] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 1, |
| /* num_explicit_templates */ 1, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(148), |
| /* parameters */ ParameterIndex(529), |
| /* return_matcher_indices */ MatcherIndicesIndex(875), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [196] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 1, |
| /* num_explicit_templates */ 1, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(95), |
| /* parameters */ ParameterIndex(1), |
| /* return_matcher_indices */ MatcherIndicesIndex(21), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [197] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 1, |
| /* num_explicit_templates */ 1, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(151), |
| /* parameters */ ParameterIndex(529), |
| /* return_matcher_indices */ MatcherIndicesIndex(875), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [198] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 2, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(154), |
| /* parameters */ ParameterIndex(498), |
| /* return_matcher_indices */ MatcherIndicesIndex(43), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [199] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 3, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(99), |
| /* parameters */ ParameterIndex(8), |
| /* return_matcher_indices */ MatcherIndicesIndex(21), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [200] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 2, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(30), |
| /* parameters */ ParameterIndex(479), |
| /* return_matcher_indices */ MatcherIndicesIndex(8), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [201] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 1, |
| /* num_explicit_templates */ 1, |
| /* num_templates */ 7, |
| /* templates */ TemplateIndex(3), |
| /* parameters */ ParameterIndex(552), |
| /* return_matcher_indices */ MatcherIndicesIndex(21), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [202] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 1, |
| /* num_explicit_templates */ 1, |
| /* num_templates */ 7, |
| /* templates */ TemplateIndex(3), |
| /* parameters */ ParameterIndex(553), |
| /* return_matcher_indices */ MatcherIndicesIndex(21), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [203] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 2, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 4, |
| /* templates */ TemplateIndex(82), |
| /* parameters */ ParameterIndex(522), |
| /* return_matcher_indices */ MatcherIndicesIndex(840), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [204] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 2, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(133), |
| /* parameters */ ParameterIndex(524), |
| /* return_matcher_indices */ MatcherIndicesIndex(852), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [205] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 2, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(133), |
| /* parameters */ ParameterIndex(526), |
| /* return_matcher_indices */ MatcherIndicesIndex(875), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [206] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 2, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(133), |
| /* parameters */ ParameterIndex(490), |
| /* return_matcher_indices */ MatcherIndicesIndex(875), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [207] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 2, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 2, |
| /* templates */ TemplateIndex(133), |
| /* parameters */ ParameterIndex(486), |
| /* return_matcher_indices */ MatcherIndicesIndex(787), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [208] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 2, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 3, |
| /* templates */ TemplateIndex(133), |
| /* parameters */ ParameterIndex(527), |
| /* return_matcher_indices */ MatcherIndicesIndex(848), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [209] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 3, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 0, |
| /* templates */ TemplateIndex(/* invalid */), |
| /* parameters */ ParameterIndex(184), |
| /* return_matcher_indices */ MatcherIndicesIndex(32), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [210] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 3, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 0, |
| /* templates */ TemplateIndex(/* invalid */), |
| /* parameters */ ParameterIndex(184), |
| /* return_matcher_indices */ MatcherIndicesIndex(43), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [211] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 1, |
| /* num_templates */ 5, |
| /* templates */ TemplateIndex(33), |
| /* parameters */ ParameterIndex(419), |
| /* return_matcher_indices */ MatcherIndicesIndex(21), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [212] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsComputePipeline), |
| /* num_parameters */ 5, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 4, |
| /* templates */ TemplateIndex(34), |
| /* parameters */ ParameterIndex(182), |
| /* return_matcher_indices */ MatcherIndicesIndex(/* invalid */), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| { |
| /* [213] */ |
| /* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMustUse), |
| /* num_parameters */ 4, |
| /* num_explicit_templates */ 0, |
| /* num_templates */ 5, |
| /* templates */ TemplateIndex(38), |
| /* parameters */ ParameterIndex(423), |
| /* return_matcher_indices */ MatcherIndicesIndex(813), |
| /* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */), |
| }, |
| }; |
| |
| static_assert(OverloadIndex::CanIndex(kOverloads), |
| "OverloadIndex is not large enough to index kOverloads"); |
| |
| constexpr IntrinsicInfo kBuiltins[] = { |
| { |
| /* [0] */ |
| /* fn array_length[I : u32, A : access](ptr<storage, struct_with_runtime_array, A>, I) -> u32 */ |
| /* num overloads */ 1, |
| /* overloads */ OverloadIndex(198), |
| }, |
| { |
| /* [1] */ |
| /* fn atomic_load[T : iu32, U : u32, S : workgroup_or_storage](ptr<S, atomic<T>, read_write>, U, U) -> T */ |
| /* fn atomic_load[T : iu32, U : u32, S : workgroup_or_storage](ptr<S, T, readable>, U, U) -> T */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(154), |
| }, |
| { |
| /* [2] */ |
| /* fn atomic_store[T : iu32, U : u32, S : workgroup_or_storage](ptr<S, atomic<T>, read_write>, U, U, T) */ |
| /* fn atomic_store[T : iu32, U : u32, S : workgroup_or_storage](ptr<S, T, writable>, U, U, T) */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(156), |
| }, |
| { |
| /* [3] */ |
| /* fn atomic_exchange[T : iu32, U : u32, S : workgroup_or_storage](ptr<S, atomic<T>, read_write>, U, U, T) -> T */ |
| /* fn atomic_exchange[T : iu32, U : u32, S : workgroup_or_storage](ptr<S, T, writable>, U, U, T) -> T */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(158), |
| }, |
| { |
| /* [4] */ |
| /* fn atomic_compare_exchange[T : iu32, U : u32, S : workgroup_or_storage](ptr<S, atomic<T>, read_write>, U, U, U, T, T) -> T */ |
| /* fn atomic_compare_exchange[T : iu32, U : u32, S : workgroup_or_storage](ptr<S, T, writable>, U, U, U, T, T) -> T */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(160), |
| }, |
| { |
| /* [5] */ |
| /* fn atomic_i_add[T : iu32, U : u32, S : workgroup_or_storage](ptr<S, atomic<T>, read_write>, U, U, T) -> T */ |
| /* fn atomic_i_add[T : iu32, U : u32, S : workgroup_or_storage](ptr<S, T, writable>, U, U, T) -> T */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(158), |
| }, |
| { |
| /* [6] */ |
| /* fn atomic_i_sub[T : iu32, U : u32, S : workgroup_or_storage](ptr<S, atomic<T>, read_write>, U, U, T) -> T */ |
| /* fn atomic_i_sub[T : iu32, U : u32, S : workgroup_or_storage](ptr<S, T, writable>, U, U, T) -> T */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(158), |
| }, |
| { |
| /* [7] */ |
| /* fn atomic_s_max[T : iu32, U : u32, S : workgroup_or_storage](ptr<S, atomic<T>, read_write>, U, U, T) -> T */ |
| /* fn atomic_s_max[T : iu32, U : u32, S : workgroup_or_storage](ptr<S, T, writable>, U, U, T) -> T */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(158), |
| }, |
| { |
| /* [8] */ |
| /* fn atomic_s_min[T : iu32, U : u32, S : workgroup_or_storage](ptr<S, atomic<T>, read_write>, U, U, T) -> T */ |
| /* fn atomic_s_min[T : iu32, U : u32, S : workgroup_or_storage](ptr<S, T, writable>, U, U, T) -> T */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(158), |
| }, |
| { |
| /* [9] */ |
| /* fn atomic_u_max[T : iu32, U : u32, S : workgroup_or_storage](ptr<S, atomic<T>, read_write>, U, U, T) -> T */ |
| /* fn atomic_u_max[T : iu32, U : u32, S : workgroup_or_storage](ptr<S, T, writable>, U, U, T) -> T */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(158), |
| }, |
| { |
| /* [10] */ |
| /* fn atomic_u_min[T : iu32, U : u32, S : workgroup_or_storage](ptr<S, atomic<T>, read_write>, U, U, T) -> T */ |
| /* fn atomic_u_min[T : iu32, U : u32, S : workgroup_or_storage](ptr<S, T, writable>, U, U, T) -> T */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(158), |
| }, |
| { |
| /* [11] */ |
| /* fn atomic_and[T : iu32, U : u32, S : workgroup_or_storage](ptr<S, atomic<T>, read_write>, U, U, T) -> T */ |
| /* fn atomic_and[T : iu32, U : u32, S : workgroup_or_storage](ptr<S, T, writable>, U, U, T) -> T */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(158), |
| }, |
| { |
| /* [12] */ |
| /* fn atomic_or[T : iu32, U : u32, S : workgroup_or_storage](ptr<S, atomic<T>, read_write>, U, U, T) -> T */ |
| /* fn atomic_or[T : iu32, U : u32, S : workgroup_or_storage](ptr<S, T, writable>, U, U, T) -> T */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(158), |
| }, |
| { |
| /* [13] */ |
| /* fn atomic_xor[T : iu32, U : u32, S : workgroup_or_storage](ptr<S, atomic<T>, read_write>, U, U, T) -> T */ |
| /* fn atomic_xor[T : iu32, U : u32, S : workgroup_or_storage](ptr<S, T, writable>, U, U, T) -> T */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(158), |
| }, |
| { |
| /* [14] */ |
| /* fn atomic_i_increment[T : iu32, U : u32, S : workgroup_or_storage](ptr<S, T, writable>, U, U) -> T */ |
| /* num overloads */ 1, |
| /* overloads */ OverloadIndex(199), |
| }, |
| { |
| /* [15] */ |
| /* fn atomic_i_decrement[T : iu32, U : u32, S : workgroup_or_storage](ptr<S, T, writable>, U, U) -> T */ |
| /* num overloads */ 1, |
| /* overloads */ OverloadIndex(199), |
| }, |
| { |
| /* [16] */ |
| /* fn dot[N : num, T : f32_f16](vec<N, T>, vec<N, T>) -> T */ |
| /* num overloads */ 1, |
| /* overloads */ OverloadIndex(200), |
| }, |
| { |
| /* [17] */ |
| /* fn image_dref_gather[D : f32, F : texel_format](image: sampled_image<image<f32, dim_2d, is_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec2<f32>, dref: D, image_operands: u32) -> vec4<f32> */ |
| /* fn image_dref_gather[D : f32, F : texel_format, A : access, Z : iu32](image: sampled_image<image<f32, dim_2d, is_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec2<f32>, dref: D, image_operands: u32, const_offset: vec2<Z>) -> vec4<f32> */ |
| /* fn image_dref_gather[D : f32, F : texel_format](image: sampled_image<image<f32, dim_2d, is_depth, is_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec3<f32>, dref: D, image_operands: u32) -> vec4<f32> */ |
| /* fn image_dref_gather[D : f32, F : texel_format, A : access, Z : iu32](image: sampled_image<image<f32, dim_2d, is_depth, is_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec3<f32>, dref: D, image_operands: u32, const_offset: vec2<Z>) -> vec4<f32> */ |
| /* fn image_dref_gather[D : f32, F : texel_format](image: sampled_image<image<f32, dim_cube, is_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec3<f32>, dref: D, image_operands: u32) -> vec4<f32> */ |
| /* fn image_dref_gather[D : f32, F : texel_format](image: sampled_image<image<f32, dim_cube, is_depth, is_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec4<f32>, dref: D, image_operands: u32) -> vec4<f32> */ |
| /* num overloads */ 6, |
| /* overloads */ OverloadIndex(133), |
| }, |
| { |
| /* [18] */ |
| /* fn image_fetch[T : fiu32, C : iu32, Z : iu32, F : texel_format](image: image<T, dim_1d, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>, coords: C, image_operands: u32, sample: Z) -> vec4<T> */ |
| /* fn image_fetch[T : fiu32, C : iu32, Z : iu32, F : texel_format](image: image<T, dim_2d, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>, coords: vec2<C>, image_operands: u32, sample: Z) -> vec4<T> */ |
| /* fn image_fetch[T : fiu32, C : iu32, Z : iu32, F : texel_format](image: image<T, dim_2d, non_depth, is_arrayed, single_sampled, sampling_compatible, F, readable>, coords: vec3<C>, image_operands: u32, sample: Z) -> vec4<T> */ |
| /* fn image_fetch[T : fiu32, C : iu32, Z : iu32, F : texel_format](image: image<T, dim_3d, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>, coords: vec3<C>, image_operands: u32, sample: Z) -> vec4<T> */ |
| /* fn image_fetch[T : fiu32, C : iu32, Z : iu32, F : texel_format](image: image<T, dim_2d, non_depth, non_arrayed, multi_sampled, sampling_compatible, F, readable>, coords: vec2<C>, image_operands: u32, sample: Z) -> vec4<T> */ |
| /* fn image_fetch[C : iu32, Z : iu32, F : texel_format](image: image<f32, dim_2d, is_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>, coords: vec2<C>, image_operands: u32, sample: Z) -> vec4<f32> */ |
| /* fn image_fetch[C : iu32, Z : iu32, F : texel_format](image: image<f32, dim_2d, is_depth, is_arrayed, single_sampled, sampling_compatible, F, readable>, coords: vec3<C>, image_operands: u32, sample: Z) -> vec4<f32> */ |
| /* fn image_fetch[C : iu32, Z : iu32, F : texel_format](image: image<f32, dim_2d, is_depth, non_arrayed, multi_sampled, sampling_compatible, F, readable>, coords: vec2<C>, image_operands: u32, sample: Z) -> vec4<f32> */ |
| /* num overloads */ 8, |
| /* overloads */ OverloadIndex(125), |
| }, |
| { |
| /* [19] */ |
| /* fn image_gather[T : fiu32, C : iu32, F : texel_format](image: sampled_image<image<T, dim_2d, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec2<f32>, component: C, image_operands: u32) -> vec4<T> */ |
| /* fn image_gather[T : fiu32, C : iu32, Z : iu32, F : texel_format](image: sampled_image<image<T, dim_2d, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec2<f32>, component: C, image_operands: u32, const_offset: vec2<Z>) -> vec4<T> */ |
| /* fn image_gather[T : fiu32, C : iu32, F : texel_format](image: sampled_image<image<T, dim_2d, non_depth, is_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec3<f32>, component: C, image_operands: u32) -> vec4<T> */ |
| /* fn image_gather[T : fiu32, C : iu32, Z : iu32, F : texel_format](image: sampled_image<image<T, dim_2d, non_depth, is_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec3<f32>, component: C, image_operands: u32, const_offset: vec2<Z>) -> vec4<T> */ |
| /* fn image_gather[T : fiu32, C : iu32, F : texel_format](image: sampled_image<image<T, dim_cube, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec3<f32>, component: C, image_operands: u32) -> vec4<T> */ |
| /* fn image_gather[T : fiu32, C : iu32, F : texel_format](image: sampled_image<image<T, dim_cube, non_depth, is_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec4<f32>, component: C, image_operands: u32) -> vec4<T> */ |
| /* fn image_gather[C : iu32, F : texel_format](image: sampled_image<image<f32, dim_2d, is_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec2<f32>, component: C, image_operands: u32) -> vec4<f32> */ |
| /* fn image_gather[C : iu32, Z : iu32, F : texel_format](image: sampled_image<image<f32, dim_2d, is_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec2<f32>, component: C, image_operands: u32, const_offset: vec2<Z>) -> vec4<f32> */ |
| /* fn image_gather[C : iu32, F : texel_format](image: sampled_image<image<f32, dim_2d, is_depth, is_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec3<f32>, component: C, image_operands: u32) -> vec4<f32> */ |
| /* fn image_gather[C : iu32, Z : iu32, F : texel_format](image: sampled_image<image<f32, dim_2d, is_depth, is_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec3<f32>, component: C, image_operands: u32, const_offset: vec2<Z>) -> vec4<f32> */ |
| /* fn image_gather[C : iu32, F : texel_format](image: sampled_image<image<f32, dim_cube, is_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec3<f32>, component: C, image_operands: u32) -> vec4<f32> */ |
| /* fn image_gather[C : iu32, F : texel_format](image: sampled_image<image<f32, dim_cube, is_depth, is_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec4<f32>, component: C, image_operands: u32) -> vec4<f32> */ |
| /* num overloads */ 12, |
| /* overloads */ OverloadIndex(58), |
| }, |
| { |
| /* [20] */ |
| /* fn image_query_size<R : iu32>[T : fiu32, F : texel_format, A : access](image: image<T, dim_1d, non_depth, non_arrayed, single_sampled, rw_op_compatible, F, A>) -> R */ |
| /* fn image_query_size<R : iu32>[T : fiu32, F : texel_format, A : access](image: image<T, dim_2d, non_depth, non_arrayed, single_sampled, rw_op_compatible, F, A>) -> vec2<R> */ |
| /* fn image_query_size<R : iu32>[T : fiu32, F : texel_format, A : access](image: image<T, dim_2d, non_depth, is_arrayed, single_sampled, rw_op_compatible, F, A>) -> vec3<R> */ |
| /* fn image_query_size<R : iu32>[T : fiu32, F : texel_format, A : access](image: image<T, dim_3d, non_depth, non_arrayed, single_sampled, rw_op_compatible, F, A>) -> vec3<R> */ |
| /* fn image_query_size<R : iu32>[T : fiu32, F : texel_format, A : access](image: image<T, dim_cube, non_depth, non_arrayed, single_sampled, rw_op_compatible, F, A>) -> vec2<R> */ |
| /* fn image_query_size<R : iu32>[T : fiu32, F : texel_format, A : access](image: image<T, dim_cube, non_depth, is_arrayed, single_sampled, rw_op_compatible, F, A>) -> vec3<R> */ |
| /* fn image_query_size<R : iu32>[T : fiu32, S : sampled, F : texel_format, A : access](image: image<T, dim_2d, non_depth, non_arrayed, multi_sampled, S, F, A>) -> vec2<R> */ |
| /* fn image_query_size<R : iu32>[F : texel_format, A : access](image: image<f32, dim_2d, is_depth, non_arrayed, single_sampled, rw_op_compatible, F, A>) -> vec2<R> */ |
| /* fn image_query_size<R : iu32>[F : texel_format, A : access](image: image<f32, dim_2d, is_depth, is_arrayed, single_sampled, rw_op_compatible, F, A>) -> vec3<R> */ |
| /* fn image_query_size<R : iu32>[F : texel_format, A : access](image: image<f32, dim_cube, is_depth, non_arrayed, single_sampled, rw_op_compatible, F, A>) -> vec2<R> */ |
| /* fn image_query_size<R : iu32>[F : texel_format, A : access](image: image<f32, dim_cube, is_depth, is_arrayed, single_sampled, rw_op_compatible, F, A>) -> vec3<R> */ |
| /* fn image_query_size<R : iu32>[S : sampled, F : texel_format, A : access](image: image<f32, dim_2d, is_depth, non_arrayed, multi_sampled, S, F, A>) -> vec2<R> */ |
| /* num overloads */ 12, |
| /* overloads */ OverloadIndex(70), |
| }, |
| { |
| /* [21] */ |
| /* fn image_query_size_lod<R : iu32>[T : fiu32, L : iu32, S : sampled, F : texel_format, A : access](image: image<T, dim_1d, non_depth, non_arrayed, single_sampled, S, F, A>, level: L) -> R */ |
| /* fn image_query_size_lod<R : iu32>[T : fiu32, L : iu32, S : sampled, F : texel_format, A : access](image: image<T, dim_2d, non_depth, non_arrayed, single_sampled, S, F, A>, level: L) -> vec2<R> */ |
| /* fn image_query_size_lod<R : iu32>[T : fiu32, L : iu32, S : sampled, F : texel_format, A : access](image: image<T, dim_2d, non_depth, is_arrayed, single_sampled, S, F, A>, level: L) -> vec3<R> */ |
| /* fn image_query_size_lod<R : iu32>[T : fiu32, L : iu32, S : sampled, F : texel_format, A : access](image: image<T, dim_3d, non_depth, non_arrayed, single_sampled, S, F, A>, level: L) -> vec3<R> */ |
| /* fn image_query_size_lod<R : iu32>[T : fiu32, L : iu32, S : sampled, F : texel_format, A : access](image: image<T, dim_cube, non_depth, non_arrayed, single_sampled, S, F, A>, level: L) -> vec2<R> */ |
| /* fn image_query_size_lod<R : iu32>[T : fiu32, L : iu32, S : sampled, F : texel_format, A : access](image: image<T, dim_cube, non_depth, is_arrayed, single_sampled, S, F, A>, level: L) -> vec3<R> */ |
| /* fn image_query_size_lod<R : iu32>[L : iu32, S : sampled, F : texel_format, A : access](image: image<f32, dim_2d, is_depth, non_arrayed, single_sampled, S, F, A>, level: L) -> vec2<R> */ |
| /* fn image_query_size_lod<R : iu32>[L : iu32, S : sampled, F : texel_format, A : access](image: image<f32, dim_2d, is_depth, is_arrayed, single_sampled, S, F, A>, level: L) -> vec3<R> */ |
| /* fn image_query_size_lod<R : iu32>[L : iu32, S : sampled, F : texel_format, A : access](image: image<f32, dim_cube, is_depth, non_arrayed, single_sampled, S, F, A>, level: L) -> vec2<R> */ |
| /* fn image_query_size_lod<R : iu32>[L : iu32, S : sampled, F : texel_format, A : access](image: image<f32, dim_cube, is_depth, is_arrayed, single_sampled, S, F, A>, level: L) -> vec3<R> */ |
| /* num overloads */ 10, |
| /* overloads */ OverloadIndex(105), |
| }, |
| { |
| /* [22] */ |
| /* fn image_query_levels<Z : iu32>[T : fiu32, D : depth, R : arrayed, S : sampled, F : texel_format, A : access](image: image<T, dim_1d_2d_3d_or_cube, D, R, single_sampled, S, F, A>) -> Z */ |
| /* num overloads */ 1, |
| /* overloads */ OverloadIndex(201), |
| }, |
| { |
| /* [23] */ |
| /* fn image_query_samples<Z : iu32>[T : fiu32, D : depth, R : arrayed, S : sampled, F : texel_format, A : access](image: image<T, dim_2d, D, R, multi_sampled, S, F, A>) -> Z */ |
| /* num overloads */ 1, |
| /* overloads */ OverloadIndex(202), |
| }, |
| { |
| /* [24] */ |
| /* fn image_read[F : f32_texel_format, A : readable, C : iu32](image: image<f32, dim_1d, non_depth, non_arrayed, single_sampled, rw_op_compatible, F, A>, coords: C, image_operands: u32) -> vec4<f32> */ |
| /* fn image_read[F : i32_texel_format, A : readable, C : iu32](image: image<i32, dim_1d, non_depth, non_arrayed, single_sampled, rw_op_compatible, F, A>, coords: C, image_operands: u32) -> vec4<i32> */ |
| /* fn image_read[F : u32_texel_format, A : readable, C : iu32](image: image<u32, dim_1d, non_depth, non_arrayed, single_sampled, rw_op_compatible, F, A>, coords: C, image_operands: u32) -> vec4<u32> */ |
| /* fn image_read[F : f32_texel_format, A : readable, C : iu32](image: image<f32, dim_2d, non_depth, non_arrayed, single_sampled, rw_op_compatible, F, A>, coords: vec2<C>, image_operands: u32) -> vec4<f32> */ |
| /* fn image_read[F : i32_texel_format, A : readable, C : iu32](image: image<i32, dim_2d, non_depth, non_arrayed, single_sampled, rw_op_compatible, F, A>, coords: vec2<C>, image_operands: u32) -> vec4<i32> */ |
| /* fn image_read[F : u32_texel_format, A : readable, C : iu32](image: image<u32, dim_2d, non_depth, non_arrayed, single_sampled, rw_op_compatible, F, A>, coords: vec2<C>, image_operands: u32) -> vec4<u32> */ |
| /* fn image_read[F : f32_texel_format, A : readable, C : iu32](image: image<f32, dim_2d, non_depth, is_arrayed, single_sampled, rw_op_compatible, F, A>, coords: vec3<C>, image_operands: u32) -> vec4<f32> */ |
| /* fn image_read[F : i32_texel_format, A : readable, C : iu32](image: image<i32, dim_2d, non_depth, is_arrayed, single_sampled, rw_op_compatible, F, A>, coords: vec3<C>, image_operands: u32) -> vec4<i32> */ |
| /* fn image_read[F : u32_texel_format, A : readable, C : iu32](image: image<u32, dim_2d, non_depth, is_arrayed, single_sampled, rw_op_compatible, F, A>, coords: vec3<C>, image_operands: u32) -> vec4<u32> */ |
| /* fn image_read[F : f32_texel_format, A : readable, C : iu32](image: image<f32, dim_3d, non_depth, non_arrayed, single_sampled, rw_op_compatible, F, A>, coords: vec3<C>, image_operands: u32) -> vec4<f32> */ |
| /* fn image_read[F : i32_texel_format, A : readable, C : iu32](image: image<i32, dim_3d, non_depth, non_arrayed, single_sampled, rw_op_compatible, F, A>, coords: vec3<C>, image_operands: u32) -> vec4<i32> */ |
| /* fn image_read[F : u32_texel_format, A : readable, C : iu32](image: image<u32, dim_3d, non_depth, non_arrayed, single_sampled, rw_op_compatible, F, A>, coords: vec3<C>, image_operands: u32) -> vec4<u32> */ |
| /* fn image_read[F : texel_format, T : fiu32, C : iu32, A : readable](image: image<T, dim_subpass, non_depth, non_arrayed, single_sampled, rw_op_compatible, F, A>, coords: vec2<C>) -> vec4<T> */ |
| /* num overloads */ 13, |
| /* overloads */ OverloadIndex(45), |
| }, |
| { |
| /* [25] */ |
| /* fn image_sample_implicit_lod[T : fiu32, F : texel_format](image: sampled_image<image<T, dim_1d, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: f32, image_operands: u32) -> vec4<f32> */ |
| /* fn image_sample_implicit_lod[T : fiu32, F : texel_format](image: sampled_image<image<T, dim_2d, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec2<f32>, image_operands: u32) -> vec4<f32> */ |
| /* fn image_sample_implicit_lod[T : fiu32, F : texel_format](image: sampled_image<image<T, dim_2d, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec2<f32>, image_operands: u32, bias: f32) -> vec4<f32> */ |
| /* fn image_sample_implicit_lod[T : fiu32, Z : iu32, F : texel_format](image: sampled_image<image<T, dim_2d, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec2<f32>, image_operands: u32, bias: f32, const_offset: vec2<Z>) -> vec4<f32> */ |
| /* fn image_sample_implicit_lod[T : fiu32, Z : iu32, F : texel_format](image: sampled_image<image<T, dim_2d, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec2<f32>, image_operands: u32, const_offset: vec2<Z>) -> vec4<f32> */ |
| /* fn image_sample_implicit_lod[T : fiu32, F : texel_format](image: sampled_image<image<T, dim_2d, non_depth, is_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec3<f32>, image_operands: u32) -> vec4<f32> */ |
| /* fn image_sample_implicit_lod[T : fiu32, F : texel_format](image: sampled_image<image<T, dim_2d, non_depth, is_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec3<f32>, image_operands: u32, bias: f32) -> vec4<f32> */ |
| /* fn image_sample_implicit_lod[T : fiu32, Z : iu32, F : texel_format](image: sampled_image<image<T, dim_2d, non_depth, is_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec3<f32>, image_operands: u32, const_offset: vec2<Z>) -> vec4<f32> */ |
| /* fn image_sample_implicit_lod[T : fiu32, Z : iu32, F : texel_format](image: sampled_image<image<T, dim_2d, non_depth, is_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec3<f32>, image_operands: u32, bias: f32, const_offset: vec2<Z>) -> vec4<f32> */ |
| /* fn image_sample_implicit_lod[T : fiu32, F : texel_format](image: sampled_image<image<T, dim_3d, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec3<f32>, image_operands: u32) -> vec4<f32> */ |
| /* fn image_sample_implicit_lod[T : fiu32, F : texel_format](image: sampled_image<image<T, dim_3d, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec3<f32>, image_operands: u32, bias: f32) -> vec4<f32> */ |
| /* fn image_sample_implicit_lod[T : fiu32, Z : iu32, F : texel_format](image: sampled_image<image<T, dim_3d, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec3<f32>, image_operands: u32, bias: f32, const_offset: vec3<Z>) -> vec4<f32> */ |
| /* fn image_sample_implicit_lod[T : fiu32, Z : iu32, F : texel_format](image: sampled_image<image<T, dim_3d, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec3<f32>, image_operands: u32, const_offset: vec3<Z>) -> vec4<f32> */ |
| /* fn image_sample_implicit_lod[T : fiu32, F : texel_format](image: sampled_image<image<T, dim_cube, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec3<f32>, image_operands: u32) -> vec4<f32> */ |
| /* fn image_sample_implicit_lod[T : fiu32, F : texel_format](image: sampled_image<image<T, dim_cube, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec3<f32>, image_operands: u32, bias: f32) -> vec4<f32> */ |
| /* fn image_sample_implicit_lod[T : fiu32, F : texel_format](image: sampled_image<image<T, dim_cube, non_depth, is_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec4<f32>, image_operands: u32) -> vec4<f32> */ |
| /* fn image_sample_implicit_lod[T : fiu32, F : texel_format](image: sampled_image<image<T, dim_cube, non_depth, is_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec4<f32>, image_operands: u32, bias: f32) -> vec4<f32> */ |
| /* fn image_sample_implicit_lod[F : texel_format](image: sampled_image<image<f32, dim_2d, is_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec2<f32>, image_operands: u32) -> vec4<f32> */ |
| /* fn image_sample_implicit_lod[Z : iu32, F : texel_format](image: sampled_image<image<f32, dim_2d, is_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec2<f32>, image_operands: u32, const_offset: vec2<Z>) -> vec4<f32> */ |
| /* fn image_sample_implicit_lod[F : texel_format](image: sampled_image<image<f32, dim_cube, is_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec3<f32>, image_operands: u32) -> vec4<f32> */ |
| /* fn image_sample_implicit_lod[F : texel_format](image: sampled_image<image<f32, dim_2d, is_depth, is_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec3<f32>, image_operands: u32) -> vec4<f32> */ |
| /* fn image_sample_implicit_lod[Z : iu32, F : texel_format](image: sampled_image<image<f32, dim_2d, is_depth, is_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec3<f32>, image_operands: u32, const_offset: vec2<Z>) -> vec4<f32> */ |
| /* fn image_sample_implicit_lod[F : texel_format](image: sampled_image<image<f32, dim_cube, is_depth, is_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec4<f32>, image_operands: u32) -> vec4<f32> */ |
| /* num overloads */ 23, |
| /* overloads */ OverloadIndex(0), |
| }, |
| { |
| /* [26] */ |
| /* fn image_sample_proj_implicit_lod[T : fiu32, F : texel_format](image: sampled_image<image<T, dim_1d, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec2<f32>, image_operands: u32) -> vec4<f32> */ |
| /* fn image_sample_proj_implicit_lod[T : fiu32, F : texel_format](image: sampled_image<image<T, dim_2d, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec3<f32>, image_operands: u32) -> vec4<f32> */ |
| /* fn image_sample_proj_implicit_lod[T : fiu32, F : texel_format](image: sampled_image<image<T, dim_2d, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec3<f32>, image_operands: u32, bias: f32) -> vec4<f32> */ |
| /* fn image_sample_proj_implicit_lod[T : fiu32, Z : iu32, F : texel_format](image: sampled_image<image<T, dim_2d, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec3<f32>, image_operands: u32, bias: f32, const_offset: vec2<Z>) -> vec4<f32> */ |
| /* fn image_sample_proj_implicit_lod[T : fiu32, Z : iu32, F : texel_format](image: sampled_image<image<T, dim_2d, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec3<f32>, image_operands: u32, const_offset: vec2<Z>) -> vec4<f32> */ |
| /* fn image_sample_proj_implicit_lod[T : fiu32, F : texel_format](image: sampled_image<image<T, dim_3d, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec4<f32>, image_operands: u32) -> vec4<f32> */ |
| /* fn image_sample_proj_implicit_lod[T : fiu32, F : texel_format](image: sampled_image<image<T, dim_3d, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec4<f32>, image_operands: u32, bias: f32) -> vec4<f32> */ |
| /* fn image_sample_proj_implicit_lod[T : fiu32, Z : iu32, F : texel_format](image: sampled_image<image<T, dim_3d, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec4<f32>, image_operands: u32, bias: f32, const_offset: vec3<Z>) -> vec4<f32> */ |
| /* fn image_sample_proj_implicit_lod[T : fiu32, Z : iu32, F : texel_format](image: sampled_image<image<T, dim_3d, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec4<f32>, image_operands: u32, const_offset: vec3<Z>) -> vec4<f32> */ |
| /* fn image_sample_proj_implicit_lod[F : texel_format](image: sampled_image<image<f32, dim_2d, is_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec3<f32>, image_operands: u32) -> vec4<f32> */ |
| /* fn image_sample_proj_implicit_lod[Z : iu32, F : texel_format](image: sampled_image<image<f32, dim_2d, is_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec3<f32>, image_operands: u32, const_offset: vec2<Z>) -> vec4<f32> */ |
| /* num overloads */ 11, |
| /* overloads */ OverloadIndex(94), |
| }, |
| { |
| /* [27] */ |
| /* fn image_sample_explicit_lod[T : fiu32, F : texel_format](image: sampled_image<image<T, dim_2d, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec2<f32>, image_operands: u32, lod: f32) -> vec4<f32> */ |
| /* fn image_sample_explicit_lod[T : fiu32, F : texel_format](image: sampled_image<image<T, dim_2d, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec2<f32>, image_operands: u32, ddx: vec2<f32>, ddy: vec2<f32>) -> vec4<f32> */ |
| /* fn image_sample_explicit_lod[T : fiu32, Z : iu32, F : texel_format](image: sampled_image<image<T, dim_2d, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec2<f32>, image_operands: u32, lod: f32, const_offset: vec2<Z>) -> vec4<f32> */ |
| /* fn image_sample_explicit_lod[T : fiu32, Z : iu32, F : texel_format](image: sampled_image<image<T, dim_2d, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec2<f32>, image_operands: u32, ddx: vec2<f32>, ddy: vec2<f32>, const_offset: vec2<Z>) -> vec4<f32> */ |
| /* fn image_sample_explicit_lod[T : fiu32, F : texel_format](image: sampled_image<image<T, dim_2d, non_depth, is_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec3<f32>, image_operands: u32, lod: f32) -> vec4<f32> */ |
| /* fn image_sample_explicit_lod[T : fiu32, F : texel_format](image: sampled_image<image<T, dim_2d, non_depth, is_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec3<f32>, image_operands: u32, ddx: vec2<f32>, ddy: vec2<f32>) -> vec4<f32> */ |
| /* fn image_sample_explicit_lod[T : fiu32, Z : iu32, F : texel_format](image: sampled_image<image<T, dim_2d, non_depth, is_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec3<f32>, image_operands: u32, lod: f32, const_offset: vec2<Z>) -> vec4<f32> */ |
| /* fn image_sample_explicit_lod[T : fiu32, Z : iu32, F : texel_format](image: sampled_image<image<T, dim_2d, non_depth, is_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec3<f32>, image_operands: u32, ddx: vec2<f32>, ddy: vec2<f32>, const_offset: vec2<Z>) -> vec4<f32> */ |
| /* fn image_sample_explicit_lod[T : fiu32, F : texel_format](image: sampled_image<image<T, dim_3d, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec3<f32>, image_operands: u32, lod: f32) -> vec4<f32> */ |
| /* fn image_sample_explicit_lod[T : fiu32, F : texel_format](image: sampled_image<image<T, dim_3d, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec3<f32>, image_operands: u32, ddx: vec3<f32>, ddy: vec3<f32>) -> vec4<f32> */ |
| /* fn image_sample_explicit_lod[T : fiu32, Z : iu32, F : texel_format](image: sampled_image<image<T, dim_3d, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec3<f32>, image_operands: u32, lod: f32, const_offset: vec3<Z>) -> vec4<f32> */ |
| /* fn image_sample_explicit_lod[T : fiu32, Z : iu32, F : texel_format](image: sampled_image<image<T, dim_3d, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec3<f32>, image_operands: u32, ddx: vec3<f32>, ddy: vec3<f32>, const_offset: vec3<Z>) -> vec4<f32> */ |
| /* fn image_sample_explicit_lod[T : fiu32, F : texel_format](image: sampled_image<image<T, dim_cube, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec3<f32>, image_operands: u32, lod: f32) -> vec4<f32> */ |
| /* fn image_sample_explicit_lod[T : fiu32, F : texel_format](image: sampled_image<image<T, dim_cube, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec3<f32>, image_operands: u32, ddx: vec3<f32>, ddy: vec3<f32>) -> vec4<f32> */ |
| /* fn image_sample_explicit_lod[T : fiu32, F : texel_format](image: sampled_image<image<T, dim_cube, non_depth, is_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec4<f32>, image_operands: u32, lod: f32) -> vec4<f32> */ |
| /* fn image_sample_explicit_lod[T : fiu32, F : texel_format](image: sampled_image<image<T, dim_cube, non_depth, is_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec4<f32>, image_operands: u32, ddx: vec3<f32>, ddy: vec3<f32>) -> vec4<f32> */ |
| /* fn image_sample_explicit_lod[F : texel_format](image: sampled_image<image<f32, dim_2d, is_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec2<f32>, image_operands: u32, lod: f32) -> vec4<f32> */ |
| /* fn image_sample_explicit_lod[Z : iu32, F : texel_format](image: sampled_image<image<f32, dim_2d, is_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec2<f32>, image_operands: u32, lod: f32, const_offset: vec2<Z>) -> vec4<f32> */ |
| /* fn image_sample_explicit_lod[F : texel_format](image: sampled_image<image<f32, dim_2d, is_depth, is_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec3<f32>, image_operands: u32, lod: f32) -> vec4<f32> */ |
| /* fn image_sample_explicit_lod[Z : iu32, F : texel_format](image: sampled_image<image<f32, dim_2d, is_depth, is_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec3<f32>, image_operands: u32, lod: f32, const_offset: vec2<Z>) -> vec4<f32> */ |
| /* fn image_sample_explicit_lod[F : texel_format](image: sampled_image<image<f32, dim_cube, is_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec3<f32>, image_operands: u32, lod: f32) -> vec4<f32> */ |
| /* fn image_sample_explicit_lod[F : texel_format](image: sampled_image<image<f32, dim_cube, is_depth, is_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec4<f32>, image_operands: u32, lod: f32) -> vec4<f32> */ |
| /* num overloads */ 22, |
| /* overloads */ OverloadIndex(23), |
| }, |
| { |
| /* [28] */ |
| /* fn image_sample_dref_implicit_lod[F : texel_format](image: sampled_image<image<f32, dim_2d, is_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec2<f32>, dref: f32, image_operands: u32) -> f32 */ |
| /* fn image_sample_dref_implicit_lod[Z : iu32, F : texel_format](image: sampled_image<image<f32, dim_2d, is_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec2<f32>, dref: f32, image_operands: u32, const_offset: vec2<Z>) -> f32 */ |
| /* fn image_sample_dref_implicit_lod[F : texel_format](image: sampled_image<image<f32, dim_2d, is_depth, is_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec3<f32>, dref: f32, image_operands: u32) -> f32 */ |
| /* fn image_sample_dref_implicit_lod[Z : iu32, F : texel_format](image: sampled_image<image<f32, dim_2d, is_depth, is_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec3<f32>, dref: f32, image_operands: u32, const_offset: vec2<Z>) -> f32 */ |
| /* fn image_sample_dref_implicit_lod[F : texel_format](image: sampled_image<image<f32, dim_cube, is_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec3<f32>, dref: f32, image_operands: u32) -> f32 */ |
| /* fn image_sample_dref_implicit_lod[F : texel_format](image: sampled_image<image<f32, dim_cube, is_depth, is_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec4<f32>, dref: f32, image_operands: u32) -> f32 */ |
| /* num overloads */ 6, |
| /* overloads */ OverloadIndex(139), |
| }, |
| { |
| /* [29] */ |
| /* fn image_sample_dref_explicit_lod[F : texel_format](image: sampled_image<image<f32, dim_2d, is_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec2<f32>, dref: f32, image_operands: u32, lod: f32) -> f32 */ |
| /* fn image_sample_dref_explicit_lod[Z : iu32, F : texel_format](image: sampled_image<image<f32, dim_2d, is_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec2<f32>, dref: f32, image_operands: u32, lod: f32, const_offset: vec2<Z>) -> f32 */ |
| /* fn image_sample_dref_explicit_lod[F : texel_format](image: sampled_image<image<f32, dim_2d, is_depth, is_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec3<f32>, dref: f32, image_operands: u32, lod: f32) -> f32 */ |
| /* fn image_sample_dref_explicit_lod[Z : iu32, F : texel_format](image: sampled_image<image<f32, dim_2d, is_depth, is_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec3<f32>, dref: f32, image_operands: u32, lod: f32, const_offset: vec2<Z>) -> f32 */ |
| /* fn image_sample_dref_explicit_lod[F : texel_format](image: sampled_image<image<f32, dim_cube, is_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec3<f32>, dref: f32, image_operands: u32, lod: f32) -> f32 */ |
| /* fn image_sample_dref_explicit_lod[F : texel_format](image: sampled_image<image<f32, dim_cube, is_depth, is_arrayed, single_sampled, sampling_compatible, F, readable>>, coords: vec4<f32>, dref: f32, image_operands: u32, lod: f32) -> f32 */ |
| /* num overloads */ 6, |
| /* overloads */ OverloadIndex(145), |
| }, |
| { |
| /* [30] */ |
| /* fn image_write[C : iu32, F : texel_format, A : access](image: image<f32, dim_1d, non_depth, non_arrayed, single_sampled, rw_op_compatible, f32_texel_format, writable>, coords: C, texel: vec4<f32>, image_operands: u32) */ |
| /* fn image_write[C : iu32, F : texel_format, A : access](image: image<i32, dim_1d, non_depth, non_arrayed, single_sampled, rw_op_compatible, i32_texel_format, writable>, coords: C, texel: vec4<i32>, image_operands: u32) */ |
| /* fn image_write[C : iu32, F : texel_format, A : access](image: image<u32, dim_1d, non_depth, non_arrayed, single_sampled, rw_op_compatible, u32_texel_format, writable>, coords: C, texel: vec4<u32>, image_operands: u32) */ |
| /* fn image_write[C : iu32, F : texel_format, A : access](image: image<f32, dim_2d, non_depth, non_arrayed, single_sampled, rw_op_compatible, f32_texel_format, writable>, coords: vec2<C>, texel: vec4<f32>, image_operands: u32) */ |
| /* fn image_write[C : iu32, F : texel_format, A : access](image: image<i32, dim_2d, non_depth, non_arrayed, single_sampled, rw_op_compatible, i32_texel_format, writable>, coords: vec2<C>, texel: vec4<i32>, image_operands: u32) */ |
| /* fn image_write[C : iu32, F : texel_format, A : access](image: image<u32, dim_2d, non_depth, non_arrayed, single_sampled, rw_op_compatible, u32_texel_format, writable>, coords: vec2<C>, texel: vec4<u32>, image_operands: u32) */ |
| /* fn image_write[C : iu32, F : texel_format, A : access](image: image<f32, dim_2d, non_depth, is_arrayed, single_sampled, rw_op_compatible, f32_texel_format, writable>, coords: vec3<C>, texel: vec4<f32>, image_operands: u32) */ |
| /* fn image_write[C : iu32, F : texel_format, A : access](image: image<i32, dim_2d, non_depth, is_arrayed, single_sampled, rw_op_compatible, i32_texel_format, writable>, coords: vec3<C>, texel: vec4<i32>, image_operands: u32) */ |
| /* fn image_write[C : iu32, F : texel_format, A : access](image: image<u32, dim_2d, non_depth, is_arrayed, single_sampled, rw_op_compatible, u32_texel_format, writable>, coords: vec3<C>, texel: vec4<u32>, image_operands: u32) */ |
| /* fn image_write[C : iu32, F : texel_format, A : access](image: image<f32, dim_3d, non_depth, non_arrayed, single_sampled, rw_op_compatible, f32_texel_format, writable>, coords: vec3<C>, texel: vec4<f32>, image_operands: u32) */ |
| /* fn image_write[C : iu32, F : texel_format, A : access](image: image<i32, dim_3d, non_depth, non_arrayed, single_sampled, rw_op_compatible, i32_texel_format, writable>, coords: vec3<C>, texel: vec4<i32>, image_operands: u32) */ |
| /* fn image_write[C : iu32, F : texel_format, A : access](image: image<u32, dim_3d, non_depth, non_arrayed, single_sampled, rw_op_compatible, u32_texel_format, writable>, coords: vec3<C>, texel: vec4<u32>, image_operands: u32) */ |
| /* num overloads */ 12, |
| /* overloads */ OverloadIndex(82), |
| }, |
| { |
| /* [31] */ |
| /* fn sampled_image<I : image<T, dim_1d, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>[T : fiu32, S : samplers, F : texel_format](I, S) -> sampled_image<I> */ |
| /* fn sampled_image<I : image<T, dim_2d, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>[T : fiu32, S : samplers, F : texel_format](I, S) -> sampled_image<I> */ |
| /* fn sampled_image<I : image<T, dim_2d, non_depth, is_arrayed, single_sampled, sampling_compatible, F, readable>>[T : fiu32, S : samplers, F : texel_format](I, S) -> sampled_image<I> */ |
| /* fn sampled_image<I : image<T, dim_3d, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>[T : fiu32, S : samplers, F : texel_format](I, S) -> sampled_image<I> */ |
| /* fn sampled_image<I : image<T, dim_cube, non_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>[T : fiu32, S : samplers, F : texel_format](I, S) -> sampled_image<I> */ |
| /* fn sampled_image<I : image<T, dim_cube, non_depth, is_arrayed, single_sampled, sampling_compatible, F, readable>>[T : fiu32, S : samplers, F : texel_format](I, S) -> sampled_image<I> */ |
| /* fn sampled_image<I : image<f32, dim_2d, is_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>[S : samplers, F : texel_format](I, S) -> sampled_image<I> */ |
| /* fn sampled_image<I : image<f32, dim_2d, is_depth, is_arrayed, single_sampled, sampling_compatible, F, readable>>[S : samplers, F : texel_format](I, S) -> sampled_image<I> */ |
| /* fn sampled_image<I : image<f32, dim_cube, is_depth, non_arrayed, single_sampled, sampling_compatible, F, readable>>[S : samplers, F : texel_format](I, S) -> sampled_image<I> */ |
| /* fn sampled_image<I : image<f32, dim_cube, is_depth, is_arrayed, single_sampled, sampling_compatible, F, readable>>[S : samplers, F : texel_format](I, S) -> sampled_image<I> */ |
| /* num overloads */ 10, |
| /* overloads */ OverloadIndex(115), |
| }, |
| { |
| /* [32] */ |
| /* fn matrix_times_matrix[T : f32_f16, K : num, C : num, R : num](mat<K, R, T>, mat<C, K, T>) -> mat<C, R, T> */ |
| /* num overloads */ 1, |
| /* overloads */ OverloadIndex(203), |
| }, |
| { |
| /* [33] */ |
| /* fn matrix_times_scalar[T : f32_f16, N : num, M : num](mat<N, M, T>, T) -> mat<N, M, T> */ |
| /* num overloads */ 1, |
| /* overloads */ OverloadIndex(204), |
| }, |
| { |
| /* [34] */ |
| /* fn matrix_times_vector[T : f32_f16, N : num, M : num](mat<N, M, T>, vec<N, T>) -> vec<M, T> */ |
| /* num overloads */ 1, |
| /* overloads */ OverloadIndex(205), |
| }, |
| { |
| /* [35] */ |
| /* fn select[T : scalar](bool, T, T) -> T */ |
| /* fn select[N : num, T : scalar](vec<N, bool>, vec<N, T>, vec<N, T>) -> vec<N, T> */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(162), |
| }, |
| { |
| /* [36] */ |
| /* fn vector_times_matrix[T : f32_f16, N : num, M : num](vec<N, T>, mat<M, N, T>) -> vec<M, T> */ |
| /* num overloads */ 1, |
| /* overloads */ OverloadIndex(206), |
| }, |
| { |
| /* [37] */ |
| /* fn vector_times_scalar[T : f32_f16, N : num](vec<N, T>, T) -> vec<N, T> */ |
| /* num overloads */ 1, |
| /* overloads */ OverloadIndex(207), |
| }, |
| { |
| /* [38] */ |
| /* fn normalize[T : f32_f16](T) -> T */ |
| /* fn normalize[N : num, T : f32_f16](vec<N, T>) -> vec<N, T> */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(164), |
| }, |
| { |
| /* [39] */ |
| /* fn inverse[T : f32_f16](mat2x2<T>) -> mat2x2<T> */ |
| /* fn inverse[T : f32_f16](mat3x3<T>) -> mat3x3<T> */ |
| /* fn inverse[T : f32_f16](mat4x4<T>) -> mat4x4<T> */ |
| /* num overloads */ 3, |
| /* overloads */ OverloadIndex(151), |
| }, |
| { |
| /* [40] */ |
| /* fn sign<R : iu32>[T : iu32](T) -> R */ |
| /* fn sign<R : iu32>[T : iu32, N : num](vec<N, T>) -> vec<N, R> */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(166), |
| }, |
| { |
| /* [41] */ |
| /* fn abs<R : iu32>[T : iu32](T) -> R */ |
| /* fn abs<R : iu32>[T : iu32, N : num](vec<N, T>) -> vec<N, R> */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(166), |
| }, |
| { |
| /* [42] */ |
| /* fn s_max<R : iu32>[T : iu32, U : iu32](T, U) -> R */ |
| /* fn s_max<R : iu32>[T : iu32, U : iu32, N : num](vec<N, T>, vec<N, U>) -> vec<N, R> */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(168), |
| }, |
| { |
| /* [43] */ |
| /* fn s_min<R : iu32>[T : iu32, U : iu32](T, U) -> R */ |
| /* fn s_min<R : iu32>[T : iu32, U : iu32, N : num](vec<N, T>, vec<N, U>) -> vec<N, R> */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(168), |
| }, |
| { |
| /* [44] */ |
| /* fn s_clamp<R : iu32>[T : iu32, U : iu32, V : iu32](T, U, V) -> R */ |
| /* fn s_clamp<R : iu32>[T : iu32, U : iu32, V : iu32, N : num](vec<N, T>, vec<N, U>, vec<N, V>) -> vec<N, R> */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(170), |
| }, |
| { |
| /* [45] */ |
| /* fn u_max<R : iu32>[T : iu32, U : iu32](T, U) -> R */ |
| /* fn u_max<R : iu32>[T : iu32, U : iu32, N : num](vec<N, T>, vec<N, U>) -> vec<N, R> */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(168), |
| }, |
| { |
| /* [46] */ |
| /* fn u_min<R : iu32>[T : iu32, U : iu32](T, U) -> R */ |
| /* fn u_min<R : iu32>[T : iu32, U : iu32, N : num](vec<N, T>, vec<N, U>) -> vec<N, R> */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(168), |
| }, |
| { |
| /* [47] */ |
| /* fn u_clamp<R : iu32>[T : iu32, U : iu32, V : iu32](T, U, V) -> R */ |
| /* fn u_clamp<R : iu32>[T : iu32, U : iu32, V : iu32, N : num](vec<N, T>, vec<N, U>, vec<N, V>) -> vec<N, R> */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(170), |
| }, |
| { |
| /* [48] */ |
| /* fn find_i_lsb<R : iu32>[T : iu32](T) -> R */ |
| /* fn find_i_lsb<R : iu32>[T : iu32, N : num](vec<N, T>) -> vec<N, R> */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(166), |
| }, |
| { |
| /* [49] */ |
| /* fn find_s_msb<R : iu32>[T : iu32](T) -> R */ |
| /* fn find_s_msb<R : iu32>[T : iu32, N : num](vec<N, T>) -> vec<N, R> */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(166), |
| }, |
| { |
| /* [50] */ |
| /* fn find_u_msb<R : iu32>[T : iu32](T) -> R */ |
| /* fn find_u_msb<R : iu32>[T : iu32, N : num](vec<N, T>) -> vec<N, R> */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(166), |
| }, |
| { |
| /* [51] */ |
| /* fn refract[T : f32_f16](T, T, T) -> T */ |
| /* fn refract[T : f32_f16, N : num](vec<N, T>, vec<N, T>, T) -> vec<N, T> */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(172), |
| }, |
| { |
| /* [52] */ |
| /* fn reflect[T : f32_f16](T, T) -> T */ |
| /* fn reflect[T : f32_f16, N : num](vec<N, T>, vec<N, T>) -> vec<N, T> */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(174), |
| }, |
| { |
| /* [53] */ |
| /* fn face_forward[T : f32_f16](T, T, T) -> T */ |
| /* fn face_forward[T : f32_f16, N : num](vec<N, T>, vec<N, T>, vec<N, T>) -> vec<N, T> */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(176), |
| }, |
| { |
| /* [54] */ |
| /* fn ldexp[T : f32_f16, U : iu32](T, U) -> T */ |
| /* fn ldexp[N : num, T : f32_f16, U : iu32](vec<N, T>, vec<N, U>) -> vec<N, T> */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(178), |
| }, |
| { |
| /* [55] */ |
| /* fn modf[T : f32_f16, S : function_private_workgroup_storage](x: T, i: ptr<S, T, writable>) -> T */ |
| /* fn modf[T : f32_f16, N : num, S : function_private_workgroup_storage](x: vec<N, T>, i: ptr<S, vec<N, T>, writable>) -> vec<N, T> */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(180), |
| }, |
| { |
| /* [56] */ |
| /* fn frexp[T : f32_f16, R : iu32, S : function_private_workgroup_storage](x: T, i: ptr<S, R, writable>) -> T */ |
| /* fn frexp[T : f32_f16, R : iu32, N : num, S : function_private_workgroup_storage](x: vec<N, T>, i: ptr<S, vec<N, R>, writable>) -> vec<N, T> */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(182), |
| }, |
| { |
| /* [57] */ |
| /* fn bit_count<R : iu32>[T : iu32](T) -> R */ |
| /* fn bit_count<R : iu32>[T : iu32, N : num](vec<N, T>) -> vec<N, R> */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(166), |
| }, |
| { |
| /* [58] */ |
| /* fn bit_field_insert[T : iu32](base: T, insert: T, offset: iu32, count: iu32) -> T */ |
| /* fn bit_field_insert[T : iu32, N : num](base: vec<N, T>, insert: vec<N, T>, offset: iu32, count: iu32) -> vec<N, T> */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(184), |
| }, |
| { |
| /* [59] */ |
| /* fn bit_field_s_extract[T : iu32](base: T, offset: iu32, count: iu32) -> T */ |
| /* fn bit_field_s_extract[T : iu32, N : num](base: vec<N, T>, offset: iu32, count: iu32) -> vec<N, T> */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(186), |
| }, |
| { |
| /* [60] */ |
| /* fn bit_field_u_extract[T : iu32](base: T, offset: iu32, count: iu32) -> T */ |
| /* fn bit_field_u_extract[T : iu32, N : num](base: vec<N, T>, offset: iu32, count: iu32) -> vec<N, T> */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(186), |
| }, |
| { |
| /* [61] */ |
| /* fn add<R : iu32>[A : iu32, B : iu32](A, B) -> R */ |
| /* fn add<R : iu32>[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, R> */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(188), |
| }, |
| { |
| /* [62] */ |
| /* fn sub<R : iu32>[A : iu32, B : iu32](A, B) -> R */ |
| /* fn sub<R : iu32>[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, R> */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(188), |
| }, |
| { |
| /* [63] */ |
| /* fn mul<R : iu32>[A : iu32, B : iu32](A, B) -> R */ |
| /* fn mul<R : iu32>[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, R> */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(188), |
| }, |
| { |
| /* [64] */ |
| /* fn s_div<R : iu32>[A : iu32, B : iu32](A, B) -> R */ |
| /* fn s_div<R : iu32>[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, R> */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(188), |
| }, |
| { |
| /* [65] */ |
| /* fn s_mod<R : iu32>[A : iu32, B : iu32](A, B) -> R */ |
| /* fn s_mod<R : iu32>[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, R> */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(188), |
| }, |
| { |
| /* [66] */ |
| /* fn s_greater_than[A : iu32, B : iu32](A, B) -> bool */ |
| /* fn s_greater_than[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, bool> */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(190), |
| }, |
| { |
| /* [67] */ |
| /* fn s_greater_than_equal[A : iu32, B : iu32](A, B) -> bool */ |
| /* fn s_greater_than_equal[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, bool> */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(190), |
| }, |
| { |
| /* [68] */ |
| /* fn s_less_than[A : iu32, B : iu32](A, B) -> bool */ |
| /* fn s_less_than[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, bool> */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(190), |
| }, |
| { |
| /* [69] */ |
| /* fn s_less_than_equal[A : iu32, B : iu32](A, B) -> bool */ |
| /* fn s_less_than_equal[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, bool> */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(190), |
| }, |
| { |
| /* [70] */ |
| /* fn u_greater_than[A : iu32, B : iu32](A, B) -> bool */ |
| /* fn u_greater_than[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, bool> */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(190), |
| }, |
| { |
| /* [71] */ |
| /* fn u_greater_than_equal[A : iu32, B : iu32](A, B) -> bool */ |
| /* fn u_greater_than_equal[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, bool> */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(190), |
| }, |
| { |
| /* [72] */ |
| /* fn u_less_than[A : iu32, B : iu32](A, B) -> bool */ |
| /* fn u_less_than[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, bool> */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(190), |
| }, |
| { |
| /* [73] */ |
| /* fn u_less_than_equal[A : iu32, B : iu32](A, B) -> bool */ |
| /* fn u_less_than_equal[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, bool> */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(190), |
| }, |
| { |
| /* [74] */ |
| /* fn convert_f_to_s<R : iu32>[T : f32_f16](T) -> R */ |
| /* fn convert_f_to_s<R : iu32>[T : f32_f16, N : num](vec<N, T>) -> vec<N, R> */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(192), |
| }, |
| { |
| /* [75] */ |
| /* fn convert_s_to_f<R : f32_f16>[T : iu32](T) -> R */ |
| /* fn convert_s_to_f<R : f32_f16>[T : iu32, N : num](vec<N, T>) -> vec<N, R> */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(194), |
| }, |
| { |
| /* [76] */ |
| /* fn convert_u_to_f<R : f32_f16>[T : iu32](T) -> R */ |
| /* fn convert_u_to_f<R : f32_f16>[T : iu32, N : num](vec<N, T>) -> vec<N, R> */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(194), |
| }, |
| { |
| /* [77] */ |
| /* fn bitwise_and<R : iu32>[A : iu32, B : iu32](A, B) -> R */ |
| /* fn bitwise_and<R : iu32>[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, R> */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(188), |
| }, |
| { |
| /* [78] */ |
| /* fn bitwise_or<R : iu32>[A : iu32, B : iu32](A, B) -> R */ |
| /* fn bitwise_or<R : iu32>[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, R> */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(188), |
| }, |
| { |
| /* [79] */ |
| /* fn bitwise_xor<R : iu32>[A : iu32, B : iu32](A, B) -> R */ |
| /* fn bitwise_xor<R : iu32>[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, R> */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(188), |
| }, |
| { |
| /* [80] */ |
| /* fn equal[A : iu32, B : iu32](A, B) -> bool */ |
| /* fn equal[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, bool> */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(190), |
| }, |
| { |
| /* [81] */ |
| /* fn not_equal[A : iu32, B : iu32](A, B) -> bool */ |
| /* fn not_equal[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, bool> */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(190), |
| }, |
| { |
| /* [82] */ |
| /* fn shift_left_logical<R : iu32>[A : iu32, B : iu32](A, B) -> R */ |
| /* fn shift_left_logical<R : iu32>[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, R> */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(188), |
| }, |
| { |
| /* [83] */ |
| /* fn shift_right_logical<R : iu32>[A : iu32, B : iu32](A, B) -> R */ |
| /* fn shift_right_logical<R : iu32>[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, R> */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(188), |
| }, |
| { |
| /* [84] */ |
| /* fn shift_right_arithmetic<R : iu32>[A : iu32, B : iu32](A, B) -> R */ |
| /* fn shift_right_arithmetic<R : iu32>[A : iu32, B : iu32, N : num](vec<N, A>, vec<N, B>) -> vec<N, R> */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(188), |
| }, |
| { |
| /* [85] */ |
| /* fn not<R : iu32>[A : iu32](A) -> R */ |
| /* fn not<R : iu32>[A : iu32, N : num](vec<N, A>) -> vec<N, R> */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(196), |
| }, |
| { |
| /* [86] */ |
| /* fn s_negate<R : iu32>[A : iu32](A) -> R */ |
| /* fn s_negate<R : iu32>[A : iu32, N : num](vec<N, A>) -> vec<N, R> */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(196), |
| }, |
| { |
| /* [87] */ |
| /* fn f_mod[T : f32_f16](T, T) -> T */ |
| /* fn f_mod[T : f32_f16, N : num](vec<N, T>, vec<N, T>) -> vec<N, T> */ |
| /* num overloads */ 2, |
| /* overloads */ OverloadIndex(174), |
| }, |
| { |
| /* [88] */ |
| /* fn outer_product[T : f32_f16, N : num, M : num](vec<N, T>, vec<M, T>) -> mat<M, N, T> */ |
| /* num overloads */ 1, |
| /* overloads */ OverloadIndex(208), |
| }, |
| { |
| /* [89] */ |
| /* fn s_dot(u32, u32, u32) -> i32 */ |
| /* num overloads */ 1, |
| /* overloads */ OverloadIndex(209), |
| }, |
| { |
| /* [90] */ |
| /* fn u_dot(u32, u32, u32) -> u32 */ |
| /* num overloads */ 1, |
| /* overloads */ OverloadIndex(210), |
| }, |
| { |
| /* [91] */ |
| /* fn cooperative_matrix_load<T : subgroup_matrix<K, S, C, R>>[K : subgroup_matrix_kind, S : fiu32_f16, C : num, R : num](ptr<workgroup_or_storage, S, readable>, u32, u32, u32) -> T */ |
| /* num overloads */ 1, |
| /* overloads */ OverloadIndex(211), |
| }, |
| { |
| /* [92] */ |
| /* fn cooperative_matrix_store[K : subgroup_matrix_kind, S : fiu32_f16, C : num, R : num](ptr<workgroup_or_storage, S, writable>, subgroup_matrix<K, S, C, R>, u32, u32, u32) */ |
| /* num overloads */ 1, |
| /* overloads */ OverloadIndex(212), |
| }, |
| { |
| /* [93] */ |
| /* fn cooperative_matrix_mul_add[T : subgroup_matrix_elements, TR : subgroup_matrix_elements, C : num, R : num, K : num](subgroup_matrix<subgroup_matrix_kind_left, T, K, R>, subgroup_matrix<subgroup_matrix_kind_right, T, C, K>, subgroup_matrix<subgroup_matrix_kind_result, TR, C, R>, u32) -> subgroup_matrix<subgroup_matrix_kind_result, TR, C, R> */ |
| /* num overloads */ 1, |
| /* overloads */ OverloadIndex(213), |
| }, |
| }; |
| |
| // clang-format on |
| |
| } // anonymous namespace |
| |
| const core::intrinsic::TableData Dialect::kData{ |
| /* templates */ kTemplates, |
| /* type_matcher_indices */ kMatcherIndices, |
| /* type_matchers */ kTypeMatchers, |
| /* number_matchers */ kNumberMatchers, |
| /* parameters */ kParameters, |
| /* overloads */ kOverloads, |
| /* const_eval_functions */ Empty, |
| /* ctor_conv */ Empty, |
| /* builtins */ kBuiltins, |
| /* binary '+' */ tint::core::intrinsic::kNoOverloads, |
| /* binary '-' */ tint::core::intrinsic::kNoOverloads, |
| /* binary '*' */ tint::core::intrinsic::kNoOverloads, |
| /* binary '/' */ tint::core::intrinsic::kNoOverloads, |
| /* binary '%' */ tint::core::intrinsic::kNoOverloads, |
| /* binary '^' */ tint::core::intrinsic::kNoOverloads, |
| /* binary '&' */ tint::core::intrinsic::kNoOverloads, |
| /* binary '|' */ tint::core::intrinsic::kNoOverloads, |
| /* binary '&&' */ tint::core::intrinsic::kNoOverloads, |
| /* binary '||' */ tint::core::intrinsic::kNoOverloads, |
| /* binary '==' */ tint::core::intrinsic::kNoOverloads, |
| /* binary '!=' */ tint::core::intrinsic::kNoOverloads, |
| /* binary '<' */ tint::core::intrinsic::kNoOverloads, |
| /* binary '>' */ tint::core::intrinsic::kNoOverloads, |
| /* binary '<=' */ tint::core::intrinsic::kNoOverloads, |
| /* binary '>=' */ tint::core::intrinsic::kNoOverloads, |
| /* binary '<<' */ tint::core::intrinsic::kNoOverloads, |
| /* binary '>>' */ tint::core::intrinsic::kNoOverloads, |
| /* unary '!' */ tint::core::intrinsic::kNoOverloads, |
| /* unary '~' */ tint::core::intrinsic::kNoOverloads, |
| /* unary '-' */ tint::core::intrinsic::kNoOverloads, |
| /* unary '*' */ tint::core::intrinsic::kNoOverloads, |
| /* unary '&' */ tint::core::intrinsic::kNoOverloads, |
| }; |
| |
| } // namespace tint::spirv::intrinsic |