blob: a0c47985f81365d2e790d28e4445062f06c662c0 [file]
// 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/msl/intrinsic/data.cc.tmpl
//
// To regenerate run: './tools/run gen'
//
// Do not modify this file directly
////////////////////////////////////////////////////////////////////////////////
// clang-format off
#include <limits>
#include <string>
#include "src/tint/lang/core/intrinsic/type_matchers.h"
#include "src/tint/lang/msl/intrinsic/dialect.h"
#include "src/tint/lang/msl/intrinsic/type_matchers.h"
#include "src/tint/utils/text/string_stream.h"
namespace tint::msl::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>;
/// 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 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 i8'
constexpr TypeMatcher kI8Matcher {
/* match */ [](MatchState& state, const Type* ty) -> const Type* {
if (!MatchI8(state, ty)) {
return nullptr;
}
return BuildI8(state, ty);
},
/* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {
out << style::Type("i8");
}
};
/// 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 u64'
constexpr TypeMatcher kU64Matcher {
/* match */ [](MatchState& state, const Type* ty) -> const Type* {
if (!MatchU64(state, ty)) {
return nullptr;
}
return BuildU64(state, ty);
},
/* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {
out << style::Type("u64");
}
};
/// TypeMatcher for 'type u8'
constexpr TypeMatcher kU8Matcher {
/* match */ [](MatchState& state, const Type* ty) -> const Type* {
if (!MatchU8(state, ty)) {
return nullptr;
}
return BuildU8(state, ty);
},
/* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {
out << style::Type("u8");
}
};
/// 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 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 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 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 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 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_filtered'
constexpr TypeMatcher kSamplerFilteredMatcher {
/* match */ [](MatchState& state, const Type* ty) -> const Type* {
Number F = Number::invalid;
if (!MatchSamplerFiltered(state, ty, F)) {
return nullptr;
}
F = state.Num(F);
if (!F.IsValid()) {
return nullptr;
}
return BuildSamplerFiltered(state, ty, F);
},
/* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {StyledText F;
state->PrintNum(F);
out << style::Type("sampler<", F, ">");
}
};
/// 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 texture_1d'
constexpr TypeMatcher kTexture1DMatcher {
/* match */ [](MatchState& state, const Type* ty) -> const Type* {
const Type* T = nullptr;
if (!MatchTexture1D(state, ty, T)) {
return nullptr;
}
T = state.Type(T);
if (T == nullptr) {
return nullptr;
}
return BuildTexture1D(state, ty, T);
},
/* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {StyledText T;
state->PrintType(T);
out << style::Type("texture_1d", "<", T, ">");
}
};
/// TypeMatcher for 'type texture_2d'
constexpr TypeMatcher kTexture2DMatcher {
/* match */ [](MatchState& state, const Type* ty) -> const Type* {
const Type* T = nullptr;
if (!MatchTexture2D(state, ty, T)) {
return nullptr;
}
T = state.Type(T);
if (T == nullptr) {
return nullptr;
}
return BuildTexture2D(state, ty, T);
},
/* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {StyledText T;
state->PrintType(T);
out << style::Type("texture_2d", "<", T, ">");
}
};
/// TypeMatcher for 'type texture_2d_array'
constexpr TypeMatcher kTexture2DArrayMatcher {
/* match */ [](MatchState& state, const Type* ty) -> const Type* {
const Type* T = nullptr;
if (!MatchTexture2DArray(state, ty, T)) {
return nullptr;
}
T = state.Type(T);
if (T == nullptr) {
return nullptr;
}
return BuildTexture2DArray(state, ty, T);
},
/* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {StyledText T;
state->PrintType(T);
out << style::Type("texture_2d_array", "<", T, ">");
}
};
/// TypeMatcher for 'type texture_3d'
constexpr TypeMatcher kTexture3DMatcher {
/* match */ [](MatchState& state, const Type* ty) -> const Type* {
const Type* T = nullptr;
if (!MatchTexture3D(state, ty, T)) {
return nullptr;
}
T = state.Type(T);
if (T == nullptr) {
return nullptr;
}
return BuildTexture3D(state, ty, T);
},
/* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {StyledText T;
state->PrintType(T);
out << style::Type("texture_3d", "<", T, ">");
}
};
/// TypeMatcher for 'type texture_cube'
constexpr TypeMatcher kTextureCubeMatcher {
/* match */ [](MatchState& state, const Type* ty) -> const Type* {
const Type* T = nullptr;
if (!MatchTextureCube(state, ty, T)) {
return nullptr;
}
T = state.Type(T);
if (T == nullptr) {
return nullptr;
}
return BuildTextureCube(state, ty, T);
},
/* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {StyledText T;
state->PrintType(T);
out << style::Type("texture_cube", "<", T, ">");
}
};
/// TypeMatcher for 'type texture_cube_array'
constexpr TypeMatcher kTextureCubeArrayMatcher {
/* match */ [](MatchState& state, const Type* ty) -> const Type* {
const Type* T = nullptr;
if (!MatchTextureCubeArray(state, ty, T)) {
return nullptr;
}
T = state.Type(T);
if (T == nullptr) {
return nullptr;
}
return BuildTextureCubeArray(state, ty, T);
},
/* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {StyledText T;
state->PrintType(T);
out << style::Type("texture_cube_array", "<", T, ">");
}
};
/// TypeMatcher for 'type texture_1d_filtered'
constexpr TypeMatcher kTexture1DFilteredMatcher {
/* match */ [](MatchState& state, const Type* ty) -> const Type* {
const Type* T = nullptr;
Number F = Number::invalid;
if (!MatchTexture1DFiltered(state, ty, T, F)) {
return nullptr;
}
T = state.Type(T);
if (T == nullptr) {
return nullptr;
}
F = state.Num(F);
if (!F.IsValid()) {
return nullptr;
}
return BuildTexture1DFiltered(state, ty, T, F);
},
/* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {StyledText T;
state->PrintType(T);StyledText F;
state->PrintNum(F);
out << style::Type("texture_1d<f32, ", F, ">");
}
};
/// TypeMatcher for 'type texture_2d_filtered'
constexpr TypeMatcher kTexture2DFilteredMatcher {
/* match */ [](MatchState& state, const Type* ty) -> const Type* {
const Type* T = nullptr;
Number F = Number::invalid;
if (!MatchTexture2DFiltered(state, ty, T, F)) {
return nullptr;
}
T = state.Type(T);
if (T == nullptr) {
return nullptr;
}
F = state.Num(F);
if (!F.IsValid()) {
return nullptr;
}
return BuildTexture2DFiltered(state, ty, T, F);
},
/* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {StyledText T;
state->PrintType(T);StyledText F;
state->PrintNum(F);
out << style::Type("texture_2d<f32, ", F, ">");
}
};
/// TypeMatcher for 'type texture_2d_array_filtered'
constexpr TypeMatcher kTexture2DArrayFilteredMatcher {
/* match */ [](MatchState& state, const Type* ty) -> const Type* {
const Type* T = nullptr;
Number F = Number::invalid;
if (!MatchTexture2DArrayFiltered(state, ty, T, F)) {
return nullptr;
}
T = state.Type(T);
if (T == nullptr) {
return nullptr;
}
F = state.Num(F);
if (!F.IsValid()) {
return nullptr;
}
return BuildTexture2DArrayFiltered(state, ty, T, F);
},
/* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {StyledText T;
state->PrintType(T);StyledText F;
state->PrintNum(F);
out << style::Type("texture_2d_array<f32, ", F, ">");
}
};
/// TypeMatcher for 'type texture_3d_filtered'
constexpr TypeMatcher kTexture3DFilteredMatcher {
/* match */ [](MatchState& state, const Type* ty) -> const Type* {
const Type* T = nullptr;
Number F = Number::invalid;
if (!MatchTexture3DFiltered(state, ty, T, F)) {
return nullptr;
}
T = state.Type(T);
if (T == nullptr) {
return nullptr;
}
F = state.Num(F);
if (!F.IsValid()) {
return nullptr;
}
return BuildTexture3DFiltered(state, ty, T, F);
},
/* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {StyledText T;
state->PrintType(T);StyledText F;
state->PrintNum(F);
out << style::Type("texture_3d<f32, ", F, ">");
}
};
/// TypeMatcher for 'type texture_cube_filtered'
constexpr TypeMatcher kTextureCubeFilteredMatcher {
/* match */ [](MatchState& state, const Type* ty) -> const Type* {
const Type* T = nullptr;
Number F = Number::invalid;
if (!MatchTextureCubeFiltered(state, ty, T, F)) {
return nullptr;
}
T = state.Type(T);
if (T == nullptr) {
return nullptr;
}
F = state.Num(F);
if (!F.IsValid()) {
return nullptr;
}
return BuildTextureCubeFiltered(state, ty, T, F);
},
/* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {StyledText T;
state->PrintType(T);StyledText F;
state->PrintNum(F);
out << style::Type("texture_cube<f32, ", F, ">");
}
};
/// TypeMatcher for 'type texture_cube_array_filtered'
constexpr TypeMatcher kTextureCubeArrayFilteredMatcher {
/* match */ [](MatchState& state, const Type* ty) -> const Type* {
const Type* T = nullptr;
Number F = Number::invalid;
if (!MatchTextureCubeArrayFiltered(state, ty, T, F)) {
return nullptr;
}
T = state.Type(T);
if (T == nullptr) {
return nullptr;
}
F = state.Num(F);
if (!F.IsValid()) {
return nullptr;
}
return BuildTextureCubeArrayFiltered(state, ty, T, F);
},
/* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {StyledText T;
state->PrintType(T);StyledText F;
state->PrintNum(F);
out << style::Type("texture_cube_array<f32, ", F, ">");
}
};
/// TypeMatcher for 'type texture_depth_2d'
constexpr TypeMatcher kTextureDepth2DMatcher {
/* match */ [](MatchState& state, const Type* ty) -> const Type* {
if (!MatchTextureDepth2D(state, ty)) {
return nullptr;
}
return BuildTextureDepth2D(state, ty);
},
/* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {
out << style::Type("texture_depth_2d");
}
};
/// TypeMatcher for 'type texture_depth_2d_array'
constexpr TypeMatcher kTextureDepth2DArrayMatcher {
/* match */ [](MatchState& state, const Type* ty) -> const Type* {
if (!MatchTextureDepth2DArray(state, ty)) {
return nullptr;
}
return BuildTextureDepth2DArray(state, ty);
},
/* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {
out << style::Type("texture_depth_2d_array");
}
};
/// TypeMatcher for 'type texture_depth_cube'
constexpr TypeMatcher kTextureDepthCubeMatcher {
/* match */ [](MatchState& state, const Type* ty) -> const Type* {
if (!MatchTextureDepthCube(state, ty)) {
return nullptr;
}
return BuildTextureDepthCube(state, ty);
},
/* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {
out << style::Type("texture_depth_cube");
}
};
/// TypeMatcher for 'type texture_depth_cube_array'
constexpr TypeMatcher kTextureDepthCubeArrayMatcher {
/* match */ [](MatchState& state, const Type* ty) -> const Type* {
if (!MatchTextureDepthCubeArray(state, ty)) {
return nullptr;
}
return BuildTextureDepthCubeArray(state, ty);
},
/* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {
out << style::Type("texture_depth_cube_array");
}
};
/// TypeMatcher for 'type texture_depth_multisampled_2d'
constexpr TypeMatcher kTextureDepthMultisampled2DMatcher {
/* match */ [](MatchState& state, const Type* ty) -> const Type* {
if (!MatchTextureDepthMultisampled2D(state, ty)) {
return nullptr;
}
return BuildTextureDepthMultisampled2D(state, ty);
},
/* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {
out << style::Type("texture_depth_multisampled_2d");
}
};
/// TypeMatcher for 'type texture_multisampled_2d'
constexpr TypeMatcher kTextureMultisampled2DMatcher {
/* match */ [](MatchState& state, const Type* ty) -> const Type* {
const Type* T = nullptr;
if (!MatchTextureMultisampled2D(state, ty, T)) {
return nullptr;
}
T = state.Type(T);
if (T == nullptr) {
return nullptr;
}
return BuildTextureMultisampled2D(state, ty, T);
},
/* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {StyledText T;
state->PrintType(T);
out << style::Type("texture_multisampled_2d", "<", T, ">");
}
};
/// TypeMatcher for 'type texture_storage_1d'
constexpr TypeMatcher kTextureStorage1DMatcher {
/* match */ [](MatchState& state, const Type* ty) -> const Type* {
Number F = Number::invalid;
Number A = Number::invalid;
if (!MatchTextureStorage1D(state, ty, F, A)) {
return nullptr;
}
F = state.Num(F);
if (!F.IsValid()) {
return nullptr;
}
A = state.Num(A);
if (!A.IsValid()) {
return nullptr;
}
return BuildTextureStorage1D(state, ty, F, A);
},
/* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {StyledText F;
state->PrintNum(F);StyledText A;
state->PrintNum(A);
out << style::Type("texture_storage_1d", "<", F, ", ", A, ">");
}
};
/// TypeMatcher for 'type texture_storage_2d'
constexpr TypeMatcher kTextureStorage2DMatcher {
/* match */ [](MatchState& state, const Type* ty) -> const Type* {
Number F = Number::invalid;
Number A = Number::invalid;
if (!MatchTextureStorage2D(state, ty, F, A)) {
return nullptr;
}
F = state.Num(F);
if (!F.IsValid()) {
return nullptr;
}
A = state.Num(A);
if (!A.IsValid()) {
return nullptr;
}
return BuildTextureStorage2D(state, ty, F, A);
},
/* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {StyledText F;
state->PrintNum(F);StyledText A;
state->PrintNum(A);
out << style::Type("texture_storage_2d", "<", F, ", ", A, ">");
}
};
/// TypeMatcher for 'type texture_storage_2d_array'
constexpr TypeMatcher kTextureStorage2DArrayMatcher {
/* match */ [](MatchState& state, const Type* ty) -> const Type* {
Number F = Number::invalid;
Number A = Number::invalid;
if (!MatchTextureStorage2DArray(state, ty, F, A)) {
return nullptr;
}
F = state.Num(F);
if (!F.IsValid()) {
return nullptr;
}
A = state.Num(A);
if (!A.IsValid()) {
return nullptr;
}
return BuildTextureStorage2DArray(state, ty, F, A);
},
/* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {StyledText F;
state->PrintNum(F);StyledText A;
state->PrintNum(A);
out << style::Type("texture_storage_2d_array", "<", F, ", ", A, ">");
}
};
/// TypeMatcher for 'type texture_storage_3d'
constexpr TypeMatcher kTextureStorage3DMatcher {
/* match */ [](MatchState& state, const Type* ty) -> const Type* {
Number F = Number::invalid;
Number A = Number::invalid;
if (!MatchTextureStorage3D(state, ty, F, A)) {
return nullptr;
}
F = state.Num(F);
if (!F.IsValid()) {
return nullptr;
}
A = state.Num(A);
if (!A.IsValid()) {
return nullptr;
}
return BuildTextureStorage3D(state, ty, F, A);
},
/* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {StyledText F;
state->PrintNum(F);StyledText A;
state->PrintNum(A);
out << style::Type("texture_storage_3d", "<", F, ", ", A, ">");
}
};
/// 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 'type bias'
constexpr TypeMatcher kBiasMatcher {
/* match */ [](MatchState& state, const Type* ty) -> const Type* {
if (!MatchBias(state, ty)) {
return nullptr;
}
return BuildBias(state, ty);
},
/* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {
out << style::Type("bias");
}
};
/// TypeMatcher for 'type gradient2d'
constexpr TypeMatcher kGradient2DMatcher {
/* match */ [](MatchState& state, const Type* ty) -> const Type* {
if (!MatchGradient2D(state, ty)) {
return nullptr;
}
return BuildGradient2D(state, ty);
},
/* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {
out << style::Type("gradient2d");
}
};
/// TypeMatcher for 'type gradient3d'
constexpr TypeMatcher kGradient3DMatcher {
/* match */ [](MatchState& state, const Type* ty) -> const Type* {
if (!MatchGradient3D(state, ty)) {
return nullptr;
}
return BuildGradient3D(state, ty);
},
/* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {
out << style::Type("gradient3d");
}
};
/// TypeMatcher for 'type gradientcube'
constexpr TypeMatcher kGradientcubeMatcher {
/* match */ [](MatchState& state, const Type* ty) -> const Type* {
if (!MatchGradientcube(state, ty)) {
return nullptr;
}
return BuildGradientcube(state, ty);
},
/* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {
out << style::Type("gradientcube");
}
};
/// TypeMatcher for 'type level'
constexpr TypeMatcher kLevelMatcher {
/* match */ [](MatchState& state, const Type* ty) -> const Type* {
if (!MatchLevel(state, ty)) {
return nullptr;
}
return BuildLevel(state, ty);
},
/* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {
out << style::Type("level");
}
};
/// TypeMatcher for 'type __packed_vec3'
constexpr TypeMatcher kPackedVec3Matcher {
/* match */ [](MatchState& state, const Type* ty) -> const Type* {
const Type* T = nullptr;
if (!MatchPackedVec3(state, ty, T)) {
return nullptr;
}
T = state.Type(T);
if (T == nullptr) {
return nullptr;
}
return BuildPackedVec3(state, ty, T);
},
/* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {StyledText T;
state->PrintType(T);
out << style::Type("__packed_vec3", "<", T, ">");
}
};
/// TypeMatcher for 'type string'
constexpr TypeMatcher kStringMatcher {
/* match */ [](MatchState& state, const Type* ty) -> const Type* {
if (!MatchString(state, ty)) {
return nullptr;
}
return BuildString(state, ty);
},
/* print */ []([[maybe_unused]] MatchState* state, StyledText& out) {
out << style::Type("string");
}
};
/// 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 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 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 iu8'
constexpr TypeMatcher kIu8Matcher {
/* match */ [](MatchState& state, const Type* ty) -> const Type* {
if (MatchI8(state, ty)) {
return BuildI8(state, ty);
}
if (MatchU8(state, ty)) {
return BuildU8(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.
kI8Matcher.print(nullptr, out); out << style::Plain(" or "); kU8Matcher.print(nullptr, out);}
};
/// TypeMatcher for 'match scalar'
constexpr TypeMatcher kScalarMatcher {
/* match */ [](MatchState& state, const Type* ty) -> const Type* {
if (MatchBool(state, ty)) {
return BuildBool(state, ty);
}
if (MatchF16(state, ty)) {
return BuildF16(state, ty);
}
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.
kBoolMatcher.print(nullptr, out); out << style::Plain(", "); kF16Matcher.print(nullptr, out); out << style::Plain(", "); kF32Matcher.print(nullptr, out); out << style::Plain(", "); kI32Matcher.print(nullptr, out); out << style::Plain(" or "); kU32Matcher.print(nullptr, out);}
};
/// EnumMatcher for 'match filterable'
constexpr NumberMatcher kFilterableMatcher {
/* match */ [](MatchState&, Number number) -> Number {
if (number.IsAny() || number.Value() == static_cast<uint32_t>(core::TextureFilterable::kFilterable)) {
return Number(static_cast<uint32_t>(core::TextureFilterable::kFilterable));
}
return Number::invalid;
},
/* print */ [](MatchState*, StyledText& out) {
out<< style::Enum("filterable");
}
};
/// EnumMatcher for 'match unfilterable'
constexpr NumberMatcher kUnfilterableMatcher {
/* match */ [](MatchState&, Number number) -> Number {
if (number.IsAny() || number.Value() == static_cast<uint32_t>(core::TextureFilterable::kUnfilterable)) {
return Number(static_cast<uint32_t>(core::TextureFilterable::kUnfilterable));
}
return Number::invalid;
},
/* print */ [](MatchState*, StyledText& out) {
out<< style::Enum("unfilterable");
}
};
/// EnumMatcher for 'match filtering'
constexpr NumberMatcher kFilteringMatcher {
/* match */ [](MatchState&, Number number) -> Number {
if (number.IsAny() || number.Value() == static_cast<uint32_t>(core::SamplerFiltering::kFiltering)) {
return Number(static_cast<uint32_t>(core::SamplerFiltering::kFiltering));
}
return Number::invalid;
},
/* print */ [](MatchState*, StyledText& out) {
out<< style::Enum("filtering");
}
};
/// EnumMatcher for 'match non_filtering'
constexpr NumberMatcher kNonFilteringMatcher {
/* match */ [](MatchState&, Number number) -> Number {
if (number.IsAny() || number.Value() == static_cast<uint32_t>(core::SamplerFiltering::kNonFiltering)) {
return Number(static_cast<uint32_t>(core::SamplerFiltering::kNonFiltering));
}
return Number::invalid;
},
/* print */ [](MatchState*, StyledText& out) {
out<< style::Enum("non_filtering");
}
};
/// EnumMatcher for 'match texture_filter'
constexpr NumberMatcher kTextureFilterMatcher {
/* match */ [](MatchState&, Number number) -> Number {
switch (static_cast<core::TextureFilterable>(number.Value())) {
case core::TextureFilterable::kFilterable:
case core::TextureFilterable::kUnfilterable:
return number;
default:
return Number::invalid;
}
},
/* print */ [](MatchState*, StyledText& out) {
out<< style::Enum("filterable")<< style::Plain(" or ") << style::Enum("unfilterable");
}
};
/// EnumMatcher for 'match sampler_filter'
constexpr NumberMatcher kSamplerFilterMatcher {
/* match */ [](MatchState&, Number number) -> Number {
switch (static_cast<core::SamplerFiltering>(number.Value())) {
case core::SamplerFiltering::kFiltering:
case core::SamplerFiltering::kNonFiltering:
return number;
default:
return Number::invalid;
}
},
/* print */ [](MatchState*, StyledText& out) {
out<< style::Enum("filtering")<< style::Plain(" or ") << style::Enum("non_filtering");
}
};
/// 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 function'
constexpr NumberMatcher kFunctionMatcher {
/* match */ [](MatchState&, Number number) -> Number {
if (number.IsAny() || number.Value() == static_cast<uint32_t>(core::AddressSpace::kFunction)) {
return Number(static_cast<uint32_t>(core::AddressSpace::kFunction));
}
return Number::invalid;
},
/* print */ [](MatchState*, StyledText& out) {
out<< style::Enum("function");
}
};
/// 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 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::kR8Snorm:
case core::TexelFormat::kRg8Unorm:
case core::TexelFormat::kRg8Snorm:
case core::TexelFormat::kBgra8Unorm:
case core::TexelFormat::kRgba8Unorm:
case core::TexelFormat::kRgba8Snorm:
case core::TexelFormat::kR16Unorm:
case core::TexelFormat::kR16Snorm:
case core::TexelFormat::kRg16Unorm:
case core::TexelFormat::kRg16Snorm:
case core::TexelFormat::kRgba16Unorm:
case core::TexelFormat::kRgba16Snorm:
case core::TexelFormat::kR16Float:
case core::TexelFormat::kRg16Float:
case core::TexelFormat::kRgba16Float:
case core::TexelFormat::kR32Float:
case core::TexelFormat::kRg32Float:
case core::TexelFormat::kRgba32Float:
case core::TexelFormat::kRgb10A2Unorm:
case core::TexelFormat::kRg11B10Ufloat:
return number;
default:
return Number::invalid;
}
},
/* print */ [](MatchState*, StyledText& out) {
out<< style::Enum("r8unorm")<< style::Plain(", ") << style::Enum("r8snorm")<< style::Plain(", ") << style::Enum("rg8unorm")<< style::Plain(", ") << style::Enum("rg8snorm")<< style::Plain(", ") << style::Enum("bgra8unorm")<< style::Plain(", ") << style::Enum("rgba8unorm")<< style::Plain(", ") << style::Enum("rgba8snorm")<< style::Plain(", ") << style::Enum("r16unorm")<< style::Plain(", ") << style::Enum("r16snorm")<< style::Plain(", ") << style::Enum("rg16unorm")<< style::Plain(", ") << style::Enum("rg16snorm")<< style::Plain(", ") << style::Enum("rgba16unorm")<< style::Plain(", ") << style::Enum("rgba16snorm")<< style::Plain(", ") << style::Enum("r16float")<< style::Plain(", ") << style::Enum("rg16float")<< style::Plain(", ") << style::Enum("rgba16float")<< style::Plain(", ") << style::Enum("r32float")<< style::Plain(", ") << style::Enum("rg32float")<< style::Plain(", ") << style::Enum("rgba32float")<< style::Plain(", ") << style::Enum("rgb10a2unorm")<< style::Plain(" or ") << style::Enum("rg11b10ufloat");
}
};
/// EnumMatcher for 'match i32_texel_format'
constexpr NumberMatcher kI32TexelFormatMatcher {
/* match */ [](MatchState&, Number number) -> Number {
switch (static_cast<core::TexelFormat>(number.Value())) {
case core::TexelFormat::kR8Sint:
case core::TexelFormat::kRg8Sint:
case core::TexelFormat::kRgba8Sint:
case core::TexelFormat::kR16Sint:
case core::TexelFormat::kRg16Sint:
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("r8sint")<< style::Plain(", ") << style::Enum("rg8sint")<< style::Plain(", ") << style::Enum("rgba8sint")<< style::Plain(", ") << style::Enum("r16sint")<< style::Plain(", ") << style::Enum("rg16sint")<< 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::kR8Uint:
case core::TexelFormat::kRg8Uint:
case core::TexelFormat::kR16Uint:
case core::TexelFormat::kRg16Uint:
case core::TexelFormat::kRgba8Uint:
case core::TexelFormat::kRgba16Uint:
case core::TexelFormat::kR32Uint:
case core::TexelFormat::kRg32Uint:
case core::TexelFormat::kRgba32Uint:
case core::TexelFormat::kRgb10A2Uint:
return number;
default:
return Number::invalid;
}
},
/* print */ [](MatchState*, StyledText& out) {
out<< style::Enum("r8uint")<< style::Plain(", ") << style::Enum("rg8uint")<< style::Plain(", ") << style::Enum("r16uint")<< style::Plain(", ") << style::Enum("rg16uint")<< style::Plain(", ") << style::Enum("rgba8uint")<< style::Plain(", ") << style::Enum("rgba16uint")<< style::Plain(", ") << style::Enum("r32uint")<< style::Plain(", ") << style::Enum("rg32uint")<< style::Plain(", ") << style::Enum("rgba32uint")<< style::Plain(" or ") << style::Enum("rgb10a2uint");
}
};
/// 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] */ kBoolMatcher,
/* [6] */ kI32Matcher,
/* [7] */ kI8Matcher,
/* [8] */ kU32Matcher,
/* [9] */ kU64Matcher,
/* [10] */ kU8Matcher,
/* [11] */ kF32Matcher,
/* [12] */ kF16Matcher,
/* [13] */ kVec2Matcher,
/* [14] */ kVec3Matcher,
/* [15] */ kVec4Matcher,
/* [16] */ kVecMatcher,
/* [17] */ kAtomicMatcher,
/* [18] */ kPtrMatcher,
/* [19] */ kSamplerMatcher,
/* [20] */ kSamplerFilteredMatcher,
/* [21] */ kSamplerComparisonMatcher,
/* [22] */ kTexture1DMatcher,
/* [23] */ kTexture2DMatcher,
/* [24] */ kTexture2DArrayMatcher,
/* [25] */ kTexture3DMatcher,
/* [26] */ kTextureCubeMatcher,
/* [27] */ kTextureCubeArrayMatcher,
/* [28] */ kTexture1DFilteredMatcher,
/* [29] */ kTexture2DFilteredMatcher,
/* [30] */ kTexture2DArrayFilteredMatcher,
/* [31] */ kTexture3DFilteredMatcher,
/* [32] */ kTextureCubeFilteredMatcher,
/* [33] */ kTextureCubeArrayFilteredMatcher,
/* [34] */ kTextureDepth2DMatcher,
/* [35] */ kTextureDepth2DArrayMatcher,
/* [36] */ kTextureDepthCubeMatcher,
/* [37] */ kTextureDepthCubeArrayMatcher,
/* [38] */ kTextureDepthMultisampled2DMatcher,
/* [39] */ kTextureMultisampled2DMatcher,
/* [40] */ kTextureStorage1DMatcher,
/* [41] */ kTextureStorage2DMatcher,
/* [42] */ kTextureStorage2DArrayMatcher,
/* [43] */ kTextureStorage3DMatcher,
/* [44] */ kSubgroupMatrixMatcher,
/* [45] */ kBiasMatcher,
/* [46] */ kGradient2DMatcher,
/* [47] */ kGradient3DMatcher,
/* [48] */ kGradientcubeMatcher,
/* [49] */ kLevelMatcher,
/* [50] */ kPackedVec3Matcher,
/* [51] */ kStringMatcher,
/* [52] */ kIu32Matcher,
/* [53] */ kFiu32Matcher,
/* [54] */ kF32F16Matcher,
/* [55] */ kFiu32F16Matcher,
/* [56] */ kIu8Matcher,
/* [57] */ kScalarMatcher,
};
/// 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] */ kFilterableMatcher,
/* [6] */ kUnfilterableMatcher,
/* [7] */ kFilteringMatcher,
/* [8] */ kNonFilteringMatcher,
/* [9] */ kTextureFilterMatcher,
/* [10] */ kSamplerFilterMatcher,
/* [11] */ kReadWriteMatcher,
/* [12] */ kReadableMatcher,
/* [13] */ kWritableMatcher,
/* [14] */ kFunctionMatcher,
/* [15] */ kStorageMatcher,
/* [16] */ kWorkgroupOrStorageMatcher,
/* [17] */ kF32TexelFormatMatcher,
/* [18] */ kI32TexelFormatMatcher,
/* [19] */ kU32TexelFormatMatcher,
/* [20] */ kSubgroupMatrixKindLeftMatcher,
/* [21] */ kSubgroupMatrixKindRightMatcher,
/* [22] */ kSubgroupMatrixKindResultMatcher,
};
constexpr MatcherIndex kMatcherIndices[] = {
/* [0] */ MatcherIndex(18),
/* [1] */ MatcherIndex(1),
/* [2] */ MatcherIndex(17),
/* [3] */ MatcherIndex(0),
/* [4] */ MatcherIndex(11),
/* [5] */ MatcherIndex(18),
/* [6] */ MatcherIndex(15),
/* [7] */ MatcherIndex(17),
/* [8] */ MatcherIndex(9),
/* [9] */ MatcherIndex(11),
/* [10] */ MatcherIndex(44),
/* [11] */ MatcherIndex(20),
/* [12] */ MatcherIndex(1),
/* [13] */ MatcherIndex(2),
/* [14] */ MatcherIndex(3),
/* [15] */ MatcherIndex(44),
/* [16] */ MatcherIndex(22),
/* [17] */ MatcherIndex(1),
/* [18] */ MatcherIndex(2),
/* [19] */ MatcherIndex(3),
/* [20] */ MatcherIndex(44),
/* [21] */ MatcherIndex(21),
/* [22] */ MatcherIndex(1),
/* [23] */ MatcherIndex(2),
/* [24] */ MatcherIndex(3),
/* [25] */ MatcherIndex(44),
/* [26] */ MatcherIndex(1),
/* [27] */ MatcherIndex(2),
/* [28] */ MatcherIndex(3),
/* [29] */ MatcherIndex(4),
/* [30] */ MatcherIndex(44),
/* [31] */ MatcherIndex(0),
/* [32] */ MatcherIndex(1),
/* [33] */ MatcherIndex(2),
/* [34] */ MatcherIndex(3),
/* [35] */ MatcherIndex(44),
/* [36] */ MatcherIndex(22),
/* [37] */ MatcherIndex(0),
/* [38] */ MatcherIndex(1),
/* [39] */ MatcherIndex(2),
/* [40] */ MatcherIndex(44),
/* [41] */ MatcherIndex(20),
/* [42] */ MatcherIndex(0),
/* [43] */ MatcherIndex(3),
/* [44] */ MatcherIndex(2),
/* [45] */ MatcherIndex(44),
/* [46] */ MatcherIndex(21),
/* [47] */ MatcherIndex(0),
/* [48] */ MatcherIndex(1),
/* [49] */ MatcherIndex(3),
/* [50] */ MatcherIndex(18),
/* [51] */ MatcherIndex(14),
/* [52] */ MatcherIndex(0),
/* [53] */ MatcherIndex(11),
/* [54] */ MatcherIndex(18),
/* [55] */ MatcherIndex(16),
/* [56] */ MatcherIndex(1),
/* [57] */ MatcherIndex(12),
/* [58] */ MatcherIndex(18),
/* [59] */ MatcherIndex(16),
/* [60] */ MatcherIndex(1),
/* [61] */ MatcherIndex(13),
/* [62] */ MatcherIndex(11),
/* [63] */ MatcherIndex(18),
/* [64] */ MatcherIndex(1),
/* [65] */ MatcherIndex(0),
/* [66] */ MatcherIndex(2),
/* [67] */ MatcherIndex(40),
/* [68] */ MatcherIndex(0),
/* [69] */ MatcherIndex(1),
/* [70] */ MatcherIndex(41),
/* [71] */ MatcherIndex(0),
/* [72] */ MatcherIndex(1),
/* [73] */ MatcherIndex(42),
/* [74] */ MatcherIndex(0),
/* [75] */ MatcherIndex(1),
/* [76] */ MatcherIndex(43),
/* [77] */ MatcherIndex(0),
/* [78] */ MatcherIndex(1),
/* [79] */ MatcherIndex(29),
/* [80] */ MatcherIndex(0),
/* [81] */ MatcherIndex(1),
/* [82] */ MatcherIndex(29),
/* [83] */ MatcherIndex(0),
/* [84] */ MatcherIndex(5),
/* [85] */ MatcherIndex(29),
/* [86] */ MatcherIndex(0),
/* [87] */ MatcherIndex(6),
/* [88] */ MatcherIndex(30),
/* [89] */ MatcherIndex(0),
/* [90] */ MatcherIndex(2),
/* [91] */ MatcherIndex(30),
/* [92] */ MatcherIndex(0),
/* [93] */ MatcherIndex(5),
/* [94] */ MatcherIndex(30),
/* [95] */ MatcherIndex(0),
/* [96] */ MatcherIndex(6),
/* [97] */ MatcherIndex(32),
/* [98] */ MatcherIndex(0),
/* [99] */ MatcherIndex(1),
/* [100] */ MatcherIndex(32),
/* [101] */ MatcherIndex(0),
/* [102] */ MatcherIndex(5),
/* [103] */ MatcherIndex(32),
/* [104] */ MatcherIndex(0),
/* [105] */ MatcherIndex(6),
/* [106] */ MatcherIndex(33),
/* [107] */ MatcherIndex(0),
/* [108] */ MatcherIndex(2),
/* [109] */ MatcherIndex(33),
/* [110] */ MatcherIndex(0),
/* [111] */ MatcherIndex(5),
/* [112] */ MatcherIndex(33),
/* [113] */ MatcherIndex(0),
/* [114] */ MatcherIndex(6),
/* [115] */ MatcherIndex(28),
/* [116] */ MatcherIndex(0),
/* [117] */ MatcherIndex(1),
/* [118] */ MatcherIndex(30),
/* [119] */ MatcherIndex(0),
/* [120] */ MatcherIndex(1),
/* [121] */ MatcherIndex(31),
/* [122] */ MatcherIndex(0),
/* [123] */ MatcherIndex(1),
/* [124] */ MatcherIndex(33),
/* [125] */ MatcherIndex(0),
/* [126] */ MatcherIndex(1),
/* [127] */ MatcherIndex(29),
/* [128] */ MatcherIndex(0),
/* [129] */ MatcherIndex(2),
/* [130] */ MatcherIndex(30),
/* [131] */ MatcherIndex(0),
/* [132] */ MatcherIndex(3),
/* [133] */ MatcherIndex(31),
/* [134] */ MatcherIndex(0),
/* [135] */ MatcherIndex(2),
/* [136] */ MatcherIndex(40),
/* [137] */ MatcherIndex(17),
/* [138] */ MatcherIndex(12),
/* [139] */ MatcherIndex(41),
/* [140] */ MatcherIndex(17),
/* [141] */ MatcherIndex(12),
/* [142] */ MatcherIndex(42),
/* [143] */ MatcherIndex(17),
/* [144] */ MatcherIndex(12),
/* [145] */ MatcherIndex(43),
/* [146] */ MatcherIndex(17),
/* [147] */ MatcherIndex(12),
/* [148] */ MatcherIndex(40),
/* [149] */ MatcherIndex(18),
/* [150] */ MatcherIndex(12),
/* [151] */ MatcherIndex(41),
/* [152] */ MatcherIndex(18),
/* [153] */ MatcherIndex(12),
/* [154] */ MatcherIndex(42),
/* [155] */ MatcherIndex(18),
/* [156] */ MatcherIndex(12),
/* [157] */ MatcherIndex(43),
/* [158] */ MatcherIndex(18),
/* [159] */ MatcherIndex(12),
/* [160] */ MatcherIndex(40),
/* [161] */ MatcherIndex(19),
/* [162] */ MatcherIndex(12),
/* [163] */ MatcherIndex(41),
/* [164] */ MatcherIndex(19),
/* [165] */ MatcherIndex(12),
/* [166] */ MatcherIndex(42),
/* [167] */ MatcherIndex(19),
/* [168] */ MatcherIndex(12),
/* [169] */ MatcherIndex(43),
/* [170] */ MatcherIndex(19),
/* [171] */ MatcherIndex(12),
/* [172] */ MatcherIndex(28),
/* [173] */ MatcherIndex(11),
/* [174] */ MatcherIndex(0),
/* [175] */ MatcherIndex(28),
/* [176] */ MatcherIndex(11),
/* [177] */ MatcherIndex(5),
/* [178] */ MatcherIndex(28),
/* [179] */ MatcherIndex(11),
/* [180] */ MatcherIndex(6),
/* [181] */ MatcherIndex(29),
/* [182] */ MatcherIndex(11),
/* [183] */ MatcherIndex(0),
/* [184] */ MatcherIndex(29),
/* [185] */ MatcherIndex(11),
/* [186] */ MatcherIndex(5),
/* [187] */ MatcherIndex(29),
/* [188] */ MatcherIndex(11),
/* [189] */ MatcherIndex(6),
/* [190] */ MatcherIndex(30),
/* [191] */ MatcherIndex(11),
/* [192] */ MatcherIndex(1),
/* [193] */ MatcherIndex(30),
/* [194] */ MatcherIndex(11),
/* [195] */ MatcherIndex(5),
/* [196] */ MatcherIndex(30),
/* [197] */ MatcherIndex(11),
/* [198] */ MatcherIndex(6),
/* [199] */ MatcherIndex(31),
/* [200] */ MatcherIndex(11),
/* [201] */ MatcherIndex(0),
/* [202] */ MatcherIndex(31),
/* [203] */ MatcherIndex(11),
/* [204] */ MatcherIndex(5),
/* [205] */ MatcherIndex(31),
/* [206] */ MatcherIndex(11),
/* [207] */ MatcherIndex(6),
/* [208] */ MatcherIndex(32),
/* [209] */ MatcherIndex(11),
/* [210] */ MatcherIndex(0),
/* [211] */ MatcherIndex(32),
/* [212] */ MatcherIndex(11),
/* [213] */ MatcherIndex(5),
/* [214] */ MatcherIndex(32),
/* [215] */ MatcherIndex(11),
/* [216] */ MatcherIndex(6),
/* [217] */ MatcherIndex(33),
/* [218] */ MatcherIndex(11),
/* [219] */ MatcherIndex(1),
/* [220] */ MatcherIndex(33),
/* [221] */ MatcherIndex(11),
/* [222] */ MatcherIndex(5),
/* [223] */ MatcherIndex(33),
/* [224] */ MatcherIndex(11),
/* [225] */ MatcherIndex(6),
/* [226] */ MatcherIndex(40),
/* [227] */ MatcherIndex(17),
/* [228] */ MatcherIndex(13),
/* [229] */ MatcherIndex(6),
/* [230] */ MatcherIndex(41),
/* [231] */ MatcherIndex(17),
/* [232] */ MatcherIndex(13),
/* [233] */ MatcherIndex(8),
/* [234] */ MatcherIndex(42),
/* [235] */ MatcherIndex(17),
/* [236] */ MatcherIndex(13),
/* [237] */ MatcherIndex(9),
/* [238] */ MatcherIndex(43),
/* [239] */ MatcherIndex(17),
/* [240] */ MatcherIndex(13),
/* [241] */ MatcherIndex(40),
/* [242] */ MatcherIndex(18),
/* [243] */ MatcherIndex(13),
/* [244] */ MatcherIndex(41),
/* [245] */ MatcherIndex(18),
/* [246] */ MatcherIndex(13),
/* [247] */ MatcherIndex(42),
/* [248] */ MatcherIndex(18),
/* [249] */ MatcherIndex(13),
/* [250] */ MatcherIndex(43),
/* [251] */ MatcherIndex(18),
/* [252] */ MatcherIndex(13),
/* [253] */ MatcherIndex(40),
/* [254] */ MatcherIndex(19),
/* [255] */ MatcherIndex(13),
/* [256] */ MatcherIndex(41),
/* [257] */ MatcherIndex(19),
/* [258] */ MatcherIndex(13),
/* [259] */ MatcherIndex(42),
/* [260] */ MatcherIndex(19),
/* [261] */ MatcherIndex(13),
/* [262] */ MatcherIndex(43),
/* [263] */ MatcherIndex(19),
/* [264] */ MatcherIndex(13),
/* [265] */ MatcherIndex(16),
/* [266] */ MatcherIndex(0),
/* [267] */ MatcherIndex(1),
/* [268] */ MatcherIndex(16),
/* [269] */ MatcherIndex(0),
/* [270] */ MatcherIndex(6),
/* [271] */ MatcherIndex(15),
/* [272] */ MatcherIndex(0),
/* [273] */ MatcherIndex(23),
/* [274] */ MatcherIndex(0),
/* [275] */ MatcherIndex(20),
/* [276] */ MatcherIndex(8),
/* [277] */ MatcherIndex(24),
/* [278] */ MatcherIndex(0),
/* [279] */ MatcherIndex(20),
/* [280] */ MatcherIndex(2),
/* [281] */ MatcherIndex(26),
/* [282] */ MatcherIndex(0),
/* [283] */ MatcherIndex(14),
/* [284] */ MatcherIndex(11),
/* [285] */ MatcherIndex(27),
/* [286] */ MatcherIndex(0),
/* [287] */ MatcherIndex(15),
/* [288] */ MatcherIndex(11),
/* [289] */ MatcherIndex(25),
/* [290] */ MatcherIndex(0),
/* [291] */ MatcherIndex(39),
/* [292] */ MatcherIndex(0),
/* [293] */ MatcherIndex(14),
/* [294] */ MatcherIndex(8),
/* [295] */ MatcherIndex(15),
/* [296] */ MatcherIndex(6),
/* [297] */ MatcherIndex(15),
/* [298] */ MatcherIndex(8),
/* [299] */ MatcherIndex(22),
/* [300] */ MatcherIndex(11),
/* [301] */ MatcherIndex(23),
/* [302] */ MatcherIndex(11),
/* [303] */ MatcherIndex(24),
/* [304] */ MatcherIndex(11),
/* [305] */ MatcherIndex(25),
/* [306] */ MatcherIndex(11),
/* [307] */ MatcherIndex(14),
/* [308] */ MatcherIndex(6),
/* [309] */ MatcherIndex(26),
/* [310] */ MatcherIndex(11),
/* [311] */ MatcherIndex(27),
/* [312] */ MatcherIndex(11),
/* [313] */ MatcherIndex(50),
/* [314] */ MatcherIndex(8),
/* [315] */ MatcherIndex(50),
/* [316] */ MatcherIndex(6),
/* [317] */ MatcherIndex(50),
/* [318] */ MatcherIndex(11),
/* [319] */ MatcherIndex(14),
/* [320] */ MatcherIndex(12),
/* [321] */ MatcherIndex(50),
/* [322] */ MatcherIndex(12),
/* [323] */ MatcherIndex(52),
/* [324] */ MatcherIndex(53),
/* [325] */ MatcherIndex(10),
/* [326] */ MatcherIndex(34),
/* [327] */ MatcherIndex(35),
/* [328] */ MatcherIndex(36),
/* [329] */ MatcherIndex(37),
/* [330] */ MatcherIndex(38),
/* [331] */ MatcherIndex(49),
/* [332] */ MatcherIndex(45),
/* [333] */ MatcherIndex(46),
/* [334] */ MatcherIndex(47),
/* [335] */ MatcherIndex(48),
/* [336] */ MatcherIndex(54),
/* [337] */ MatcherIndex(55),
/* [338] */ MatcherIndex(57),
/* [339] */ MatcherIndex(51),
};
static_assert(MatcherIndicesIndex::CanIndex(kMatcherIndices),
"MatcherIndicesIndex is not large enough to index kMatcherIndices");
constexpr ParameterInfo kParameters[] = {
{
/* [0] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(327),
},
{
/* [1] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(21),
},
{
/* [2] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(61),
},
{
/* [3] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [4] */
/* usage */ core::ParameterUsage::kDepthRef,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(4),
},
{
/* [5] */
/* usage */ core::ParameterUsage::kLevel,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(331),
},
{
/* [6] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(228),
},
{
/* [7] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(277),
},
{
/* [8] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(161),
},
{
/* [9] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(61),
},
{
/* [10] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(1),
},
{
/* [11] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(228),
},
{
/* [12] */
/* usage */ core::ParameterUsage::kComponent,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [13] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(88),
},
{
/* [14] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(161),
},
{
/* [15] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(61),
},
{
/* [16] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(1),
},
{
/* [17] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(228),
},
{
/* [18] */
/* usage */ core::ParameterUsage::kComponent,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [19] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(277),
},
{
/* [20] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(279),
},
{
/* [21] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(61),
},
{
/* [22] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(1),
},
{
/* [23] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(228),
},
{
/* [24] */
/* usage */ core::ParameterUsage::kComponent,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [25] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(91),
},
{
/* [26] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(279),
},
{
/* [27] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(61),
},
{
/* [28] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(1),
},
{
/* [29] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(228),
},
{
/* [30] */
/* usage */ core::ParameterUsage::kComponent,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [31] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(94),
},
{
/* [32] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(275),
},
{
/* [33] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(61),
},
{
/* [34] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(1),
},
{
/* [35] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(228),
},
{
/* [36] */
/* usage */ core::ParameterUsage::kComponent,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [37] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(327),
},
{
/* [38] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(21),
},
{
/* [39] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(61),
},
{
/* [40] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [41] */
/* usage */ core::ParameterUsage::kDepthRef,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(4),
},
{
/* [42] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(228),
},
{
/* [43] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(303),
},
{
/* [44] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(161),
},
{
/* [45] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(61),
},
{
/* [46] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [47] */
/* usage */ core::ParameterUsage::kLevel,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(331),
},
{
/* [48] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(228),
},
{
/* [49] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(190),
},
{
/* [50] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(161),
},
{
/* [51] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(61),
},
{
/* [52] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [53] */
/* usage */ core::ParameterUsage::kLevel,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(331),
},
{
/* [54] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(228),
},
{
/* [55] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(303),
},
{
/* [56] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(11),
},
{
/* [57] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(61),
},
{
/* [58] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [59] */
/* usage */ core::ParameterUsage::kLevel,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(331),
},
{
/* [60] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(228),
},
{
/* [61] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(193),
},
{
/* [62] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(11),
},
{
/* [63] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(61),
},
{
/* [64] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [65] */
/* usage */ core::ParameterUsage::kLevel,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(331),
},
{
/* [66] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(228),
},
{
/* [67] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(196),
},
{
/* [68] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(275),
},
{
/* [69] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(61),
},
{
/* [70] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [71] */
/* usage */ core::ParameterUsage::kLevel,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(331),
},
{
/* [72] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(228),
},
{
/* [73] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(327),
},
{
/* [74] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(161),
},
{
/* [75] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(61),
},
{
/* [76] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [77] */
/* usage */ core::ParameterUsage::kLevel,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(331),
},
{
/* [78] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(228),
},
{
/* [79] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(303),
},
{
/* [80] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(161),
},
{
/* [81] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(61),
},
{
/* [82] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [83] */
/* usage */ core::ParameterUsage::kBias,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(332),
},
{
/* [84] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(228),
},
{
/* [85] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(190),
},
{
/* [86] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(161),
},
{
/* [87] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(61),
},
{
/* [88] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [89] */
/* usage */ core::ParameterUsage::kBias,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(332),
},
{
/* [90] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(228),
},
{
/* [91] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(303),
},
{
/* [92] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(11),
},
{
/* [93] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(61),
},
{
/* [94] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [95] */
/* usage */ core::ParameterUsage::kBias,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(332),
},
{
/* [96] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(228),
},
{
/* [97] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(193),
},
{
/* [98] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(11),
},
{
/* [99] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(61),
},
{
/* [100] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [101] */
/* usage */ core::ParameterUsage::kBias,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(332),
},
{
/* [102] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(228),
},
{
/* [103] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(196),
},
{
/* [104] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(275),
},
{
/* [105] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(61),
},
{
/* [106] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [107] */
/* usage */ core::ParameterUsage::kBias,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(332),
},
{
/* [108] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(228),
},
{
/* [109] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(303),
},
{
/* [110] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(161),
},
{
/* [111] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(61),
},
{
/* [112] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [113] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(333),
},
{
/* [114] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(228),
},
{
/* [115] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(190),
},
{
/* [116] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(161),
},
{
/* [117] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(61),
},
{
/* [118] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [119] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(333),
},
{
/* [120] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(228),
},
{
/* [121] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(303),
},
{
/* [122] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(11),
},
{
/* [123] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(61),
},
{
/* [124] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [125] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(333),
},
{
/* [126] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(228),
},
{
/* [127] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(193),
},
{
/* [128] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(11),
},
{
/* [129] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(61),
},
{
/* [130] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [131] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(333),
},
{
/* [132] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(228),
},
{
/* [133] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(196),
},
{
/* [134] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(275),
},
{
/* [135] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(61),
},
{
/* [136] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [137] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(333),
},
{
/* [138] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(228),
},
{
/* [139] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(326),
},
{
/* [140] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(21),
},
{
/* [141] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(61),
},
{
/* [142] */
/* usage */ core::ParameterUsage::kDepthRef,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(4),
},
{
/* [143] */
/* usage */ core::ParameterUsage::kLevel,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(331),
},
{
/* [144] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(228),
},
{
/* [145] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(329),
},
{
/* [146] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(21),
},
{
/* [147] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [148] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [149] */
/* usage */ core::ParameterUsage::kDepthRef,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(4),
},
{
/* [150] */
/* usage */ core::ParameterUsage::kLevel,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(331),
},
{
/* [151] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(0),
},
{
/* [152] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(50),
},
{
/* [153] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [154] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [155] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [156] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(273),
},
{
/* [157] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(161),
},
{
/* [158] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(61),
},
{
/* [159] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(228),
},
{
/* [160] */
/* usage */ core::ParameterUsage::kComponent,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [161] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(79),
},
{
/* [162] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(161),
},
{
/* [163] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(61),
},
{
/* [164] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(228),
},
{
/* [165] */
/* usage */ core::ParameterUsage::kComponent,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [166] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(273),
},
{
/* [167] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(11),
},
{
/* [168] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(61),
},
{
/* [169] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(228),
},
{
/* [170] */
/* usage */ core::ParameterUsage::kComponent,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [171] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(82),
},
{
/* [172] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(11),
},
{
/* [173] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(61),
},
{
/* [174] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(228),
},
{
/* [175] */
/* usage */ core::ParameterUsage::kComponent,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [176] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(85),
},
{
/* [177] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(275),
},
{
/* [178] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(61),
},
{
/* [179] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(228),
},
{
/* [180] */
/* usage */ core::ParameterUsage::kComponent,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [181] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(285),
},
{
/* [182] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(161),
},
{
/* [183] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [184] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(1),
},
{
/* [185] */
/* usage */ core::ParameterUsage::kComponent,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [186] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(106),
},
{
/* [187] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(161),
},
{
/* [188] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [189] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(1),
},
{
/* [190] */
/* usage */ core::ParameterUsage::kComponent,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [191] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(285),
},
{
/* [192] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(279),
},
{
/* [193] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [194] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(1),
},
{
/* [195] */
/* usage */ core::ParameterUsage::kComponent,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [196] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(109),
},
{
/* [197] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(279),
},
{
/* [198] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [199] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(1),
},
{
/* [200] */
/* usage */ core::ParameterUsage::kComponent,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [201] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(112),
},
{
/* [202] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(275),
},
{
/* [203] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [204] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(1),
},
{
/* [205] */
/* usage */ core::ParameterUsage::kComponent,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [206] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(327),
},
{
/* [207] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(161),
},
{
/* [208] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(61),
},
{
/* [209] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [210] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(228),
},
{
/* [211] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(326),
},
{
/* [212] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(21),
},
{
/* [213] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(61),
},
{
/* [214] */
/* usage */ core::ParameterUsage::kDepthRef,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(4),
},
{
/* [215] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(228),
},
{
/* [216] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(303),
},
{
/* [217] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(161),
},
{
/* [218] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(61),
},
{
/* [219] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [220] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(228),
},
{
/* [221] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(190),
},
{
/* [222] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(161),
},
{
/* [223] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(61),
},
{
/* [224] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [225] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(228),
},
{
/* [226] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(303),
},
{
/* [227] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(11),
},
{
/* [228] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(61),
},
{
/* [229] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [230] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(228),
},
{
/* [231] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(193),
},
{
/* [232] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(11),
},
{
/* [233] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(61),
},
{
/* [234] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [235] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(228),
},
{
/* [236] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(196),
},
{
/* [237] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(275),
},
{
/* [238] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(61),
},
{
/* [239] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [240] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(228),
},
{
/* [241] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(301),
},
{
/* [242] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(161),
},
{
/* [243] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(61),
},
{
/* [244] */
/* usage */ core::ParameterUsage::kLevel,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(331),
},
{
/* [245] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(228),
},
{
/* [246] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(181),
},
{
/* [247] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(161),
},
{
/* [248] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(61),
},
{
/* [249] */
/* usage */ core::ParameterUsage::kLevel,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(331),
},
{
/* [250] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(228),
},
{
/* [251] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(301),
},
{
/* [252] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(41),
},
{
/* [253] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(61),
},
{
/* [254] */
/* usage */ core::ParameterUsage::kLevel,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(331),
},
{
/* [255] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(228),
},
{
/* [256] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(184),
},
{
/* [257] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(41),
},
{
/* [258] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(61),
},
{
/* [259] */
/* usage */ core::ParameterUsage::kLevel,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(331),
},
{
/* [260] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(228),
},
{
/* [261] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(187),
},
{
/* [262] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(275),
},
{
/* [263] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(61),
},
{
/* [264] */
/* usage */ core::ParameterUsage::kLevel,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(331),
},
{
/* [265] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(228),
},
{
/* [266] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(305),
},
{
/* [267] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(161),
},
{
/* [268] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [269] */
/* usage */ core::ParameterUsage::kLevel,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(331),
},
{
/* [270] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(307),
},
{
/* [271] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(199),
},
{
/* [272] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(161),
},
{
/* [273] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [274] */
/* usage */ core::ParameterUsage::kLevel,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(331),
},
{
/* [275] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(307),
},
{
/* [276] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(305),
},
{
/* [277] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(41),
},
{
/* [278] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [279] */
/* usage */ core::ParameterUsage::kLevel,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(331),
},
{
/* [280] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(307),
},
{
/* [281] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(202),
},
{
/* [282] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(41),
},
{
/* [283] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [284] */
/* usage */ core::ParameterUsage::kLevel,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(331),
},
{
/* [285] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(307),
},
{
/* [286] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(205),
},
{
/* [287] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(275),
},
{
/* [288] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [289] */
/* usage */ core::ParameterUsage::kLevel,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(331),
},
{
/* [290] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(307),
},
{
/* [291] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(311),
},
{
/* [292] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(161),
},
{
/* [293] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [294] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [295] */
/* usage */ core::ParameterUsage::kLevel,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(331),
},
{
/* [296] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(217),
},
{
/* [297] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(161),
},
{
/* [298] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [299] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [300] */
/* usage */ core::ParameterUsage::kLevel,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(331),
},
{
/* [301] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(311),
},
{
/* [302] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(11),
},
{
/* [303] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [304] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [305] */
/* usage */ core::ParameterUsage::kLevel,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(331),
},
{
/* [306] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(220),
},
{
/* [307] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(11),
},
{
/* [308] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [309] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [310] */
/* usage */ core::ParameterUsage::kLevel,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(331),
},
{
/* [311] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(223),
},
{
/* [312] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(275),
},
{
/* [313] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [314] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [315] */
/* usage */ core::ParameterUsage::kLevel,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(331),
},
{
/* [316] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(326),
},
{
/* [317] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(161),
},
{
/* [318] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(61),
},
{
/* [319] */
/* usage */ core::ParameterUsage::kLevel,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(331),
},
{
/* [320] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(228),
},
{
/* [321] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(329),
},
{
/* [322] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(161),
},
{
/* [323] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [324] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [325] */
/* usage */ core::ParameterUsage::kLevel,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(331),
},
{
/* [326] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(301),
},
{
/* [327] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(161),
},
{
/* [328] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(61),
},
{
/* [329] */
/* usage */ core::ParameterUsage::kBias,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(332),
},
{
/* [330] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(228),
},
{
/* [331] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(181),
},
{
/* [332] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(161),
},
{
/* [333] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(61),
},
{
/* [334] */
/* usage */ core::ParameterUsage::kBias,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(332),
},
{
/* [335] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(228),
},
{
/* [336] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(301),
},
{
/* [337] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(41),
},
{
/* [338] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(61),
},
{
/* [339] */
/* usage */ core::ParameterUsage::kBias,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(332),
},
{
/* [340] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(228),
},
{
/* [341] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(184),
},
{
/* [342] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(41),
},
{
/* [343] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(61),
},
{
/* [344] */
/* usage */ core::ParameterUsage::kBias,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(332),
},
{
/* [345] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(228),
},
{
/* [346] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(187),
},
{
/* [347] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(275),
},
{
/* [348] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(61),
},
{
/* [349] */
/* usage */ core::ParameterUsage::kBias,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(332),
},
{
/* [350] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(228),
},
{
/* [351] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(305),
},
{
/* [352] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(161),
},
{
/* [353] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [354] */
/* usage */ core::ParameterUsage::kBias,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(332),
},
{
/* [355] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(307),
},
{
/* [356] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(199),
},
{
/* [357] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(161),
},
{
/* [358] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [359] */
/* usage */ core::ParameterUsage::kBias,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(332),
},
{
/* [360] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(307),
},
{
/* [361] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(305),
},
{
/* [362] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(41),
},
{
/* [363] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [364] */
/* usage */ core::ParameterUsage::kBias,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(332),
},
{
/* [365] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(307),
},
{
/* [366] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(202),
},
{
/* [367] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(41),
},
{
/* [368] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [369] */
/* usage */ core::ParameterUsage::kBias,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(332),
},
{
/* [370] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(307),
},
{
/* [371] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(205),
},
{
/* [372] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(275),
},
{
/* [373] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [374] */
/* usage */ core::ParameterUsage::kBias,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(332),
},
{
/* [375] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(307),
},
{
/* [376] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(311),
},
{
/* [377] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(161),
},
{
/* [378] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [379] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [380] */
/* usage */ core::ParameterUsage::kBias,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(332),
},
{
/* [381] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(217),
},
{
/* [382] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(161),
},
{
/* [383] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [384] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [385] */
/* usage */ core::ParameterUsage::kBias,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(332),
},
{
/* [386] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(311),
},
{
/* [387] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(11),
},
{
/* [388] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [389] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [390] */
/* usage */ core::ParameterUsage::kBias,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(332),
},
{
/* [391] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(220),
},
{
/* [392] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(11),
},
{
/* [393] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [394] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [395] */
/* usage */ core::ParameterUsage::kBias,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(332),
},
{
/* [396] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(223),
},
{
/* [397] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(275),
},
{
/* [398] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [399] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [400] */
/* usage */ core::ParameterUsage::kBias,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(332),
},
{
/* [401] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(301),
},
{
/* [402] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(161),
},
{
/* [403] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(61),
},
{
/* [404] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(333),
},
{
/* [405] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(228),
},
{
/* [406] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(181),
},
{
/* [407] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(161),
},
{
/* [408] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(61),
},
{
/* [409] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(333),
},
{
/* [410] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(228),
},
{
/* [411] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(301),
},
{
/* [412] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(41),
},
{
/* [413] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(61),
},
{
/* [414] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(333),
},
{
/* [415] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(228),
},
{
/* [416] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(184),
},
{
/* [417] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(41),
},
{
/* [418] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(61),
},
{
/* [419] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(333),
},
{
/* [420] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(228),
},
{
/* [421] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(187),
},
{
/* [422] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(275),
},
{
/* [423] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(61),
},
{
/* [424] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(333),
},
{
/* [425] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(228),
},
{
/* [426] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(305),
},
{
/* [427] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(161),
},
{
/* [428] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [429] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(334),
},
{
/* [430] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(307),
},
{
/* [431] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(199),
},
{
/* [432] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(161),
},
{
/* [433] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [434] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(334),
},
{
/* [435] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(307),
},
{
/* [436] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(305),
},
{
/* [437] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(41),
},
{
/* [438] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [439] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(334),
},
{
/* [440] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(307),
},
{
/* [441] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(202),
},
{
/* [442] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(41),
},
{
/* [443] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [444] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(334),
},
{
/* [445] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(307),
},
{
/* [446] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(205),
},
{
/* [447] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(275),
},
{
/* [448] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [449] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(334),
},
{
/* [450] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(307),
},
{
/* [451] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(311),
},
{
/* [452] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(161),
},
{
/* [453] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [454] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [455] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(335),
},
{
/* [456] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(217),
},
{
/* [457] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(161),
},
{
/* [458] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [459] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [460] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(335),
},
{
/* [461] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(311),
},
{
/* [462] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(11),
},
{
/* [463] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [464] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [465] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(335),
},
{
/* [466] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(220),
},
{
/* [467] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(11),
},
{
/* [468] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [469] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [470] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(335),
},
{
/* [471] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(223),
},
{
/* [472] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(275),
},
{
/* [473] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [474] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [475] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(335),
},
{
/* [476] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(328),
},
{
/* [477] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(21),
},
{
/* [478] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [479] */
/* usage */ core::ParameterUsage::kDepthRef,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(4),
},
{
/* [480] */
/* usage */ core::ParameterUsage::kLevel,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(331),
},
{
/* [481] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(30),
},
{
/* [482] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(54),
},
{
/* [483] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(8),
},
{
/* [484] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(236),
},
{
/* [485] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(84),
},
{
/* [486] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(30),
},
{
/* [487] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(58),
},
{
/* [488] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(8),
},
{
/* [489] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(236),
},
{
/* [490] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(84),
},
{
/* [491] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(339),
},
{
/* [492] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [493] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [494] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [495] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [496] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [497] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(87),
},
{
/* [498] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(339),
},
{
/* [499] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [500] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [501] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [502] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(265),
},
{
/* [503] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(265),
},
{
/* [504] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(1),
},
{
/* [505] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(265),
},
{
/* [506] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(268),
},
{
/* [507] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(339),
},
{
/* [508] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(4),
},
{
/* [509] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(4),
},
{
/* [510] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(4),
},
{
/* [511] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [512] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(339),
},
{
/* [513] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(4),
},
{
/* [514] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(4),
},
{
/* [515] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(4),
},
{
/* [516] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(265),
},
{
/* [517] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [518] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(281),
},
{
/* [519] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(161),
},
{
/* [520] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [521] */
/* usage */ core::ParameterUsage::kComponent,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [522] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(97),
},
{
/* [523] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(161),
},
{
/* [524] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [525] */
/* usage */ core::ParameterUsage::kComponent,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [526] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(281),
},
{
/* [527] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(11),
},
{
/* [528] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [529] */
/* usage */ core::ParameterUsage::kComponent,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [530] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(100),
},
{
/* [531] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(11),
},
{
/* [532] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [533] */
/* usage */ core::ParameterUsage::kComponent,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [534] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(103),
},
{
/* [535] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(275),
},
{
/* [536] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [537] */
/* usage */ core::ParameterUsage::kComponent,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [538] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(326),
},
{
/* [539] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(161),
},
{
/* [540] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(61),
},
{
/* [541] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(228),
},
{
/* [542] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(277),
},
{
/* [543] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(232),
},
{
/* [544] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(1),
},
{
/* [545] */
/* usage */ core::ParameterUsage::kLevel,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(13),
},
{
/* [546] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(130),
},
{
/* [547] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(232),
},
{
/* [548] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(1),
},
{
/* [549] */
/* usage */ core::ParameterUsage::kLevel,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(13),
},
{
/* [550] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(327),
},
{
/* [551] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(232),
},
{
/* [552] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [553] */
/* usage */ core::ParameterUsage::kLevel,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(1),
},
{
/* [554] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(301),
},
{
/* [555] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(161),
},
{
/* [556] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(61),
},
{
/* [557] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(228),
},
{
/* [558] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(181),
},
{
/* [559] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(161),
},
{
/* [560] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(61),
},
{
/* [561] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(228),
},
{
/* [562] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(301),
},
{
/* [563] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(41),
},
{
/* [564] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(61),
},
{
/* [565] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(228),
},
{
/* [566] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(184),
},
{
/* [567] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(41),
},
{
/* [568] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(61),
},
{
/* [569] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(228),
},
{
/* [570] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(187),
},
{
/* [571] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(275),
},
{
/* [572] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(61),
},
{
/* [573] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(228),
},
{
/* [574] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(305),
},
{
/* [575] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(161),
},
{
/* [576] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [577] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(307),
},
{
/* [578] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(199),
},
{
/* [579] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(161),
},
{
/* [580] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [581] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(307),
},
{
/* [582] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(305),
},
{
/* [583] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(41),
},
{
/* [584] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [585] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(307),
},
{
/* [586] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(202),
},
{
/* [587] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(41),
},
{
/* [588] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [589] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(307),
},
{
/* [590] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(205),
},
{
/* [591] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(275),
},
{
/* [592] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [593] */
/* usage */ core::ParameterUsage::kOffset,
/* is_const */ true,
/* matcher_indices */ MatcherIndicesIndex(307),
},
{
/* [594] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(309),
},
{
/* [595] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(161),
},
{
/* [596] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [597] */
/* usage */ core::ParameterUsage::kLevel,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(331),
},
{
/* [598] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(208),
},
{
/* [599] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(161),
},
{
/* [600] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [601] */
/* usage */ core::ParameterUsage::kLevel,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(331),
},
{
/* [602] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(309),
},
{
/* [603] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(41),
},
{
/* [604] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [605] */
/* usage */ core::ParameterUsage::kLevel,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(331),
},
{
/* [606] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(211),
},
{
/* [607] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(41),
},
{
/* [608] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [609] */
/* usage */ core::ParameterUsage::kLevel,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(331),
},
{
/* [610] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(214),
},
{
/* [611] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(275),
},
{
/* [612] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [613] */
/* usage */ core::ParameterUsage::kLevel,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(331),
},
{
/* [614] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(328),
},
{
/* [615] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(161),
},
{
/* [616] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [617] */
/* usage */ core::ParameterUsage::kLevel,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(331),
},
{
/* [618] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(309),
},
{
/* [619] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(161),
},
{
/* [620] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [621] */
/* usage */ core::ParameterUsage::kBias,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(332),
},
{
/* [622] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(208),
},
{
/* [623] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(161),
},
{
/* [624] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [625] */
/* usage */ core::ParameterUsage::kBias,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(332),
},
{
/* [626] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(309),
},
{
/* [627] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(41),
},
{
/* [628] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [629] */
/* usage */ core::ParameterUsage::kBias,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(332),
},
{
/* [630] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(211),
},
{
/* [631] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(41),
},
{
/* [632] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [633] */
/* usage */ core::ParameterUsage::kBias,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(332),
},
{
/* [634] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(214),
},
{
/* [635] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(275),
},
{
/* [636] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [637] */
/* usage */ core::ParameterUsage::kBias,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(332),
},
{
/* [638] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(309),
},
{
/* [639] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(161),
},
{
/* [640] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [641] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(335),
},
{
/* [642] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(208),
},
{
/* [643] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(161),
},
{
/* [644] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [645] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(335),
},
{
/* [646] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(309),
},
{
/* [647] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(41),
},
{
/* [648] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [649] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(335),
},
{
/* [650] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(211),
},
{
/* [651] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(41),
},
{
/* [652] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [653] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(335),
},
{
/* [654] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(214),
},
{
/* [655] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(275),
},
{
/* [656] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [657] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(335),
},
{
/* [658] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(234),
},
{
/* [659] */
/* usage */ core::ParameterUsage::kValue,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(287),
},
{
/* [660] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(232),
},
{
/* [661] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [662] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(247),
},
{
/* [663] */
/* usage */ core::ParameterUsage::kValue,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(295),
},
{
/* [664] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(232),
},
{
/* [665] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [666] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(259),
},
{
/* [667] */
/* usage */ core::ParameterUsage::kValue,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(297),
},
{
/* [668] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(232),
},
{
/* [669] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [670] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(35),
},
{
/* [671] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(40),
},
{
/* [672] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(45),
},
{
/* [673] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(35),
},
{
/* [674] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(339),
},
{
/* [675] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [676] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [677] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [678] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(339),
},
{
/* [679] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [680] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [681] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(265),
},
{
/* [682] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(0),
},
{
/* [683] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [684] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [685] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(5),
},
{
/* [686] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(8),
},
{
/* [687] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [688] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(273),
},
{
/* [689] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(232),
},
{
/* [690] */
/* usage */ core::ParameterUsage::kLevel,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(1),
},
{
/* [691] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(289),
},
{
/* [692] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(293),
},
{
/* [693] */
/* usage */ core::ParameterUsage::kLevel,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(1),
},
{
/* [694] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(127),
},
{
/* [695] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(232),
},
{
/* [696] */
/* usage */ core::ParameterUsage::kLevel,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(1),
},
{
/* [697] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(133),
},
{
/* [698] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(293),
},
{
/* [699] */
/* usage */ core::ParameterUsage::kLevel,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(1),
},
{
/* [700] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(291),
},
{
/* [701] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(232),
},
{
/* [702] */
/* usage */ core::ParameterUsage::kSampleIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(1),
},
{
/* [703] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(326),
},
{
/* [704] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(232),
},
{
/* [705] */
/* usage */ core::ParameterUsage::kLevel,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [706] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(330),
},
{
/* [707] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(232),
},
{
/* [708] */
/* usage */ core::ParameterUsage::kSampleIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [709] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(142),
},
{
/* [710] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(232),
},
{
/* [711] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [712] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(154),
},
{
/* [713] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(232),
},
{
/* [714] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [715] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(166),
},
{
/* [716] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(232),
},
{
/* [717] */
/* usage */ core::ParameterUsage::kArrayIndex,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(3),
},
{
/* [718] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(299),
},
{
/* [719] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(161),
},
{
/* [720] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(4),
},
{
/* [721] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(172),
},
{
/* [722] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(161),
},
{
/* [723] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(4),
},
{
/* [724] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(299),
},
{
/* [725] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(41),
},
{
/* [726] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(4),
},
{
/* [727] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(175),
},
{
/* [728] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(41),
},
{
/* [729] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(4),
},
{
/* [730] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(178),
},
{
/* [731] */
/* usage */ core::ParameterUsage::kSampler,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(275),
},
{
/* [732] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(4),
},
{
/* [733] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(226),
},
{
/* [734] */
/* usage */ core::ParameterUsage::kValue,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(287),
},
{
/* [735] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [736] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(230),
},
{
/* [737] */
/* usage */ core::ParameterUsage::kValue,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(287),
},
{
/* [738] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(232),
},
{
/* [739] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(238),
},
{
/* [740] */
/* usage */ core::ParameterUsage::kValue,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(287),
},
{
/* [741] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(293),
},
{
/* [742] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(241),
},
{
/* [743] */
/* usage */ core::ParameterUsage::kValue,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(295),
},
{
/* [744] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [745] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(244),
},
{
/* [746] */
/* usage */ core::ParameterUsage::kValue,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(295),
},
{
/* [747] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(232),
},
{
/* [748] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(250),
},
{
/* [749] */
/* usage */ core::ParameterUsage::kValue,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(295),
},
{
/* [750] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(293),
},
{
/* [751] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(253),
},
{
/* [752] */
/* usage */ core::ParameterUsage::kValue,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(297),
},
{
/* [753] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [754] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(256),
},
{
/* [755] */
/* usage */ core::ParameterUsage::kValue,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(297),
},
{
/* [756] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(232),
},
{
/* [757] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(262),
},
{
/* [758] */
/* usage */ core::ParameterUsage::kValue,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(297),
},
{
/* [759] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(293),
},
{
/* [760] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(0),
},
{
/* [761] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [762] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(273),
},
{
/* [763] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [764] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(277),
},
{
/* [765] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [766] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(289),
},
{
/* [767] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [768] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(281),
},
{
/* [769] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [770] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(285),
},
{
/* [771] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [772] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(79),
},
{
/* [773] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [774] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(118),
},
{
/* [775] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [776] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(121),
},
{
/* [777] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [778] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(97),
},
{
/* [779] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [780] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(124),
},
{
/* [781] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [782] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(326),
},
{
/* [783] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [784] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(327),
},
{
/* [785] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [786] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(328),
},
{
/* [787] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [788] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(329),
},
{
/* [789] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [790] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(70),
},
{
/* [791] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [792] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(73),
},
{
/* [793] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [794] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(76),
},
{
/* [795] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [796] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(36),
},
{
/* [797] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [798] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(115),
},
{
/* [799] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [800] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(136),
},
{
/* [801] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [802] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(139),
},
{
/* [803] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(232),
},
{
/* [804] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(145),
},
{
/* [805] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(293),
},
{
/* [806] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(148),
},
{
/* [807] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [808] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(151),
},
{
/* [809] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(232),
},
{
/* [810] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(157),
},
{
/* [811] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(293),
},
{
/* [812] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(160),
},
{
/* [813] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [814] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(163),
},
{
/* [815] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(232),
},
{
/* [816] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(169),
},
{
/* [817] */
/* usage */ core::ParameterUsage::kCoords,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(293),
},
{
/* [818] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(63),
},
{
/* [819] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(233),
},
{
/* [820] */
/* usage */ core::ParameterUsage::kTexture,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(67),
},
{
/* [821] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(313),
},
{
/* [822] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(315),
},
{
/* [823] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(317),
},
{
/* [824] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(321),
},
{
/* [825] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(293),
},
{
/* [826] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(307),
},
{
/* [827] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(283),
},
{
/* [828] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(319),
},
{
/* [829] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(10),
},
{
/* [830] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(15),
},
{
/* [831] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(20),
},
{
/* [832] */
/* usage */ core::ParameterUsage::kNone,
/* is_const */ false,
/* matcher_indices */ MatcherIndicesIndex(13),
},
};
static_assert(ParameterIndex::CanIndex(kParameters),
"ParameterIndex is not large enough to index kParameters");
constexpr TemplateInfo kTemplates[] = {
{
/* [0] */
/* name */ "T",
/* matcher_indices */ MatcherIndicesIndex(25),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [1] */
/* name */ "K",
/* matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [2] */
/* name */ "S",
/* matcher_indices */ MatcherIndicesIndex(336),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [3] */
/* name */ "C",
/* matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [4] */
/* name */ "R",
/* matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [5] */
/* name */ "K",
/* matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [6] */
/* name */ "T",
/* matcher_indices */ MatcherIndicesIndex(4),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [7] */
/* name */ "A",
/* matcher_indices */ MatcherIndicesIndex(323),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [8] */
/* name */ "L",
/* matcher_indices */ MatcherIndicesIndex(323),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [9] */
/* name */ "F",
/* matcher_indices */ MatcherIndicesIndex(8),
/* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [10] */
/* name */ "T",
/* matcher_indices */ MatcherIndicesIndex(10),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [11] */
/* name */ "S",
/* matcher_indices */ MatcherIndicesIndex(336),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [12] */
/* name */ "C",
/* matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [13] */
/* name */ "R",
/* matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [14] */
/* name */ "T",
/* matcher_indices */ MatcherIndicesIndex(15),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [15] */
/* name */ "S",
/* matcher_indices */ MatcherIndicesIndex(336),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [16] */
/* name */ "C",
/* matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [17] */
/* name */ "R",
/* matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [18] */
/* name */ "T",
/* matcher_indices */ MatcherIndicesIndex(20),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [19] */
/* name */ "S",
/* matcher_indices */ MatcherIndicesIndex(336),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [20] */
/* name */ "C",
/* matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [21] */
/* name */ "R",
/* matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [22] */
/* name */ "T",
/* matcher_indices */ MatcherIndicesIndex(4),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [23] */
/* name */ "A",
/* matcher_indices */ MatcherIndicesIndex(323),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [24] */
/* name */ "F",
/* matcher_indices */ MatcherIndicesIndex(8),
/* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [25] */
/* name */ "T",
/* matcher_indices */ MatcherIndicesIndex(4),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [26] */
/* name */ "A",
/* matcher_indices */ MatcherIndicesIndex(323),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [27] */
/* name */ "K",
/* matcher_indices */ MatcherIndicesIndex(325),
/* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [28] */
/* name */ "T",
/* matcher_indices */ MatcherIndicesIndex(324),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [29] */
/* name */ "A",
/* matcher_indices */ MatcherIndicesIndex(323),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [30] */
/* name */ "L",
/* matcher_indices */ MatcherIndicesIndex(323),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [31] */
/* name */ "T",
/* matcher_indices */ MatcherIndicesIndex(4),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [32] */
/* name */ "L",
/* matcher_indices */ MatcherIndicesIndex(323),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [33] */
/* name */ "F",
/* matcher_indices */ MatcherIndicesIndex(8),
/* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [34] */
/* name */ "T",
/* matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [35] */
/* name */ "S",
/* matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [36] */
/* name */ "A",
/* matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [37] */
/* name */ "T",
/* matcher_indices */ MatcherIndicesIndex(323),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [38] */
/* name */ "S",
/* matcher_indices */ MatcherIndicesIndex(55),
/* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [39] */
/* name */ "F",
/* matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [40] */
/* name */ "A",
/* matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [41] */
/* name */ "T",
/* matcher_indices */ MatcherIndicesIndex(4),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [42] */
/* name */ "F",
/* matcher_indices */ MatcherIndicesIndex(8),
/* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [43] */
/* name */ "T",
/* matcher_indices */ MatcherIndicesIndex(4),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [44] */
/* name */ "K",
/* matcher_indices */ MatcherIndicesIndex(325),
/* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [45] */
/* name */ "T",
/* matcher_indices */ MatcherIndicesIndex(324),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [46] */
/* name */ "L",
/* matcher_indices */ MatcherIndicesIndex(323),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [47] */
/* name */ "T",
/* matcher_indices */ MatcherIndicesIndex(324),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [48] */
/* name */ "S",
/* matcher_indices */ MatcherIndicesIndex(323),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [49] */
/* name */ "N",
/* matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [50] */
/* name */ "T",
/* matcher_indices */ MatcherIndicesIndex(336),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [51] */
/* name */ "N",
/* matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [52] */
/* name */ "T",
/* matcher_indices */ MatcherIndicesIndex(337),
/* kind */ TemplateInfo::Kind::kType,
},
{
/* [53] */
/* name */ "N",
/* matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* kind */ TemplateInfo::Kind::kNumber,
},
{
/* [54] */
/* name */ "T",
/* matcher_indices */ MatcherIndicesIndex(338),
/* kind */ TemplateInfo::Kind::kType,
},
};
static_assert(TemplateIndex::CanIndex(kTemplates),
"TemplateIndex is not large enough to index kTemplates");
constexpr OverloadInfo kOverloads[] = {
{
/* [0] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(718),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [1] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(9),
/* parameters */ ParameterIndex(721),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [2] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(27),
/* parameters */ ParameterIndex(724),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [3] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(27),
/* parameters */ ParameterIndex(727),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [4] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(730),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [5] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(241),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [6] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(9),
/* parameters */ ParameterIndex(246),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [7] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(27),
/* parameters */ ParameterIndex(251),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [8] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(27),
/* parameters */ ParameterIndex(256),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [9] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(261),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [10] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(554),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [11] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(9),
/* parameters */ ParameterIndex(558),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [12] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(27),
/* parameters */ ParameterIndex(562),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [13] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(27),
/* parameters */ ParameterIndex(566),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [14] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(570),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [15] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(7),
/* parameters */ ParameterIndex(43),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [16] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(23),
/* parameters */ ParameterIndex(49),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [17] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(26),
/* parameters */ ParameterIndex(55),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [18] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(26),
/* parameters */ ParameterIndex(61),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [19] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(7),
/* parameters */ ParameterIndex(67),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [20] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(7),
/* parameters */ ParameterIndex(216),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [21] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(23),
/* parameters */ ParameterIndex(221),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [22] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(26),
/* parameters */ ParameterIndex(226),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [23] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(26),
/* parameters */ ParameterIndex(231),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [24] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(7),
/* parameters */ ParameterIndex(236),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [25] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(266),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [26] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(9),
/* parameters */ ParameterIndex(271),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [27] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(27),
/* parameters */ ParameterIndex(276),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [28] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(27),
/* parameters */ ParameterIndex(281),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [29] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(286),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [30] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(574),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [31] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(9),
/* parameters */ ParameterIndex(578),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [32] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(27),
/* parameters */ ParameterIndex(582),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [33] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(27),
/* parameters */ ParameterIndex(586),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [34] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(590),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [35] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(594),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [36] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(9),
/* parameters */ ParameterIndex(598),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [37] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(27),
/* parameters */ ParameterIndex(602),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [38] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(27),
/* parameters */ ParameterIndex(606),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [39] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(610),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [40] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(7),
/* parameters */ ParameterIndex(291),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [41] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(23),
/* parameters */ ParameterIndex(296),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [42] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(26),
/* parameters */ ParameterIndex(301),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [43] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(26),
/* parameters */ ParameterIndex(306),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [44] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(7),
/* parameters */ ParameterIndex(311),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [45] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(316),
/* return_matcher_indices */ MatcherIndicesIndex(4),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [46] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(538),
/* return_matcher_indices */ MatcherIndicesIndex(4),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [47] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(7),
/* parameters */ ParameterIndex(73),
/* return_matcher_indices */ MatcherIndicesIndex(4),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [48] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(7),
/* parameters */ ParameterIndex(206),
/* return_matcher_indices */ MatcherIndicesIndex(4),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [49] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(614),
/* return_matcher_indices */ MatcherIndicesIndex(4),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [50] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(7),
/* parameters */ ParameterIndex(321),
/* return_matcher_indices */ MatcherIndicesIndex(4),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [51] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(241),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [52] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(9),
/* parameters */ ParameterIndex(246),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [53] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(27),
/* parameters */ ParameterIndex(251),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [54] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(27),
/* parameters */ ParameterIndex(256),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [55] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(261),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [56] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(241),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [57] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(9),
/* parameters */ ParameterIndex(246),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [58] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(27),
/* parameters */ ParameterIndex(251),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [59] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(27),
/* parameters */ ParameterIndex(256),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [60] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(261),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [61] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(7),
/* parameters */ ParameterIndex(43),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [62] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(23),
/* parameters */ ParameterIndex(49),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [63] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(26),
/* parameters */ ParameterIndex(55),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [64] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(26),
/* parameters */ ParameterIndex(61),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [65] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(7),
/* parameters */ ParameterIndex(67),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [66] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 6,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(7),
/* parameters */ ParameterIndex(43),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [67] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 6,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(23),
/* parameters */ ParameterIndex(49),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [68] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 6,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(26),
/* parameters */ ParameterIndex(55),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [69] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 6,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(26),
/* parameters */ ParameterIndex(61),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [70] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 6,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(7),
/* parameters */ ParameterIndex(67),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [71] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(266),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [72] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(9),
/* parameters */ ParameterIndex(271),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [73] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(27),
/* parameters */ ParameterIndex(276),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [74] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(27),
/* parameters */ ParameterIndex(281),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [75] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(286),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [76] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(266),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [77] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(9),
/* parameters */ ParameterIndex(271),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [78] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(27),
/* parameters */ ParameterIndex(276),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [79] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(27),
/* parameters */ ParameterIndex(281),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [80] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(286),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [81] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(594),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [82] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(9),
/* parameters */ ParameterIndex(598),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [83] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(27),
/* parameters */ ParameterIndex(602),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [84] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(27),
/* parameters */ ParameterIndex(606),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [85] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(610),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [86] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(7),
/* parameters */ ParameterIndex(291),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [87] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(23),
/* parameters */ ParameterIndex(296),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [88] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(26),
/* parameters */ ParameterIndex(301),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [89] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(26),
/* parameters */ ParameterIndex(306),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [90] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(7),
/* parameters */ ParameterIndex(311),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [91] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(316),
/* return_matcher_indices */ MatcherIndicesIndex(4),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [92] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(316),
/* return_matcher_indices */ MatcherIndicesIndex(4),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [93] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(7),
/* parameters */ ParameterIndex(73),
/* return_matcher_indices */ MatcherIndicesIndex(4),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [94] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 6,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(7),
/* parameters */ ParameterIndex(73),
/* return_matcher_indices */ MatcherIndicesIndex(4),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [95] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(614),
/* return_matcher_indices */ MatcherIndicesIndex(4),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [96] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(7),
/* parameters */ ParameterIndex(321),
/* return_matcher_indices */ MatcherIndicesIndex(4),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [97] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(326),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [98] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(9),
/* parameters */ ParameterIndex(331),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [99] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(27),
/* parameters */ ParameterIndex(336),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [100] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(27),
/* parameters */ ParameterIndex(341),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [101] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(346),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [102] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(326),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [103] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(9),
/* parameters */ ParameterIndex(331),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [104] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(27),
/* parameters */ ParameterIndex(336),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [105] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(27),
/* parameters */ ParameterIndex(341),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [106] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(346),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [107] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(7),
/* parameters */ ParameterIndex(79),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [108] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(23),
/* parameters */ ParameterIndex(85),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [109] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(26),
/* parameters */ ParameterIndex(91),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [110] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(26),
/* parameters */ ParameterIndex(97),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [111] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(7),
/* parameters */ ParameterIndex(103),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [112] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 6,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(7),
/* parameters */ ParameterIndex(79),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [113] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 6,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(23),
/* parameters */ ParameterIndex(85),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [114] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 6,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(26),
/* parameters */ ParameterIndex(91),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [115] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 6,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(26),
/* parameters */ ParameterIndex(97),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [116] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 6,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(7),
/* parameters */ ParameterIndex(103),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [117] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(351),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [118] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(9),
/* parameters */ ParameterIndex(356),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [119] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(27),
/* parameters */ ParameterIndex(361),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [120] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(27),
/* parameters */ ParameterIndex(366),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [121] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(371),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [122] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(351),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [123] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(9),
/* parameters */ ParameterIndex(356),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [124] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(27),
/* parameters */ ParameterIndex(361),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [125] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(27),
/* parameters */ ParameterIndex(366),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [126] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(371),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [127] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(618),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [128] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(9),
/* parameters */ ParameterIndex(622),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [129] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(27),
/* parameters */ ParameterIndex(626),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [130] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(27),
/* parameters */ ParameterIndex(630),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [131] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(634),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [132] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(7),
/* parameters */ ParameterIndex(376),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [133] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(23),
/* parameters */ ParameterIndex(381),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [134] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(26),
/* parameters */ ParameterIndex(386),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [135] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(26),
/* parameters */ ParameterIndex(391),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [136] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(7),
/* parameters */ ParameterIndex(396),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [137] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(401),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [138] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(9),
/* parameters */ ParameterIndex(406),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [139] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(27),
/* parameters */ ParameterIndex(411),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [140] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(27),
/* parameters */ ParameterIndex(416),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [141] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(421),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [142] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(401),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [143] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(9),
/* parameters */ ParameterIndex(406),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [144] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(27),
/* parameters */ ParameterIndex(411),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [145] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(27),
/* parameters */ ParameterIndex(416),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [146] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(421),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [147] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(7),
/* parameters */ ParameterIndex(109),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [148] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(23),
/* parameters */ ParameterIndex(115),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [149] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(26),
/* parameters */ ParameterIndex(121),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [150] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(26),
/* parameters */ ParameterIndex(127),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [151] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(7),
/* parameters */ ParameterIndex(133),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [152] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 6,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(7),
/* parameters */ ParameterIndex(109),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [153] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 6,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(23),
/* parameters */ ParameterIndex(115),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [154] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 6,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(26),
/* parameters */ ParameterIndex(121),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [155] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 6,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(26),
/* parameters */ ParameterIndex(127),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [156] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 6,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(7),
/* parameters */ ParameterIndex(133),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [157] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(426),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [158] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(9),
/* parameters */ ParameterIndex(431),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [159] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(27),
/* parameters */ ParameterIndex(436),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [160] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(27),
/* parameters */ ParameterIndex(441),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [161] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(446),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [162] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(426),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [163] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(9),
/* parameters */ ParameterIndex(431),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [164] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(27),
/* parameters */ ParameterIndex(436),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [165] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(27),
/* parameters */ ParameterIndex(441),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [166] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(446),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [167] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(638),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [168] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(9),
/* parameters */ ParameterIndex(642),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [169] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(27),
/* parameters */ ParameterIndex(646),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [170] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(27),
/* parameters */ ParameterIndex(650),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [171] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(654),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [172] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(7),
/* parameters */ ParameterIndex(451),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [173] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(23),
/* parameters */ ParameterIndex(456),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [174] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(26),
/* parameters */ ParameterIndex(461),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [175] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(26),
/* parameters */ ParameterIndex(466),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [176] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(7),
/* parameters */ ParameterIndex(471),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [177] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(28),
/* parameters */ ParameterIndex(156),
/* return_matcher_indices */ MatcherIndicesIndex(271),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [178] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(41),
/* parameters */ ParameterIndex(161),
/* return_matcher_indices */ MatcherIndicesIndex(271),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [179] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(43),
/* parameters */ ParameterIndex(166),
/* return_matcher_indices */ MatcherIndicesIndex(271),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [180] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(43),
/* parameters */ ParameterIndex(171),
/* return_matcher_indices */ MatcherIndicesIndex(271),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [181] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(6),
/* parameters */ ParameterIndex(176),
/* return_matcher_indices */ MatcherIndicesIndex(271),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [182] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 6,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(28),
/* parameters */ ParameterIndex(7),
/* return_matcher_indices */ MatcherIndicesIndex(271),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [183] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 6,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
/* templates */ TemplateIndex(22),
/* parameters */ ParameterIndex(13),
/* return_matcher_indices */ MatcherIndicesIndex(271),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [184] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 6,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
/* templates */ TemplateIndex(25),
/* parameters */ ParameterIndex(19),
/* return_matcher_indices */ MatcherIndicesIndex(271),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [185] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 6,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
/* templates */ TemplateIndex(25),
/* parameters */ ParameterIndex(25),
/* return_matcher_indices */ MatcherIndicesIndex(271),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [186] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 6,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(6),
/* parameters */ ParameterIndex(31),
/* return_matcher_indices */ MatcherIndicesIndex(271),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [187] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(28),
/* parameters */ ParameterIndex(518),
/* return_matcher_indices */ MatcherIndicesIndex(271),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [188] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(41),
/* parameters */ ParameterIndex(522),
/* return_matcher_indices */ MatcherIndicesIndex(271),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [189] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(43),
/* parameters */ ParameterIndex(526),
/* return_matcher_indices */ MatcherIndicesIndex(271),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [190] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(43),
/* parameters */ ParameterIndex(530),
/* return_matcher_indices */ MatcherIndicesIndex(271),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [191] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(6),
/* parameters */ ParameterIndex(534),
/* return_matcher_indices */ MatcherIndicesIndex(271),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [192] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(28),
/* parameters */ ParameterIndex(181),
/* return_matcher_indices */ MatcherIndicesIndex(271),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [193] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
/* templates */ TemplateIndex(22),
/* parameters */ ParameterIndex(186),
/* return_matcher_indices */ MatcherIndicesIndex(271),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [194] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
/* templates */ TemplateIndex(25),
/* parameters */ ParameterIndex(191),
/* return_matcher_indices */ MatcherIndicesIndex(271),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [195] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
/* templates */ TemplateIndex(25),
/* parameters */ ParameterIndex(196),
/* return_matcher_indices */ MatcherIndicesIndex(271),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [196] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(6),
/* parameters */ ParameterIndex(201),
/* return_matcher_indices */ MatcherIndicesIndex(271),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [197] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(538),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [198] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(7),
/* parameters */ ParameterIndex(206),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [199] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(614),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [200] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(7),
/* parameters */ ParameterIndex(321),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [201] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(28),
/* parameters */ ParameterIndex(796),
/* return_matcher_indices */ MatcherIndicesIndex(271),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [202] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(45),
/* parameters */ ParameterIndex(688),
/* return_matcher_indices */ MatcherIndicesIndex(271),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [203] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
/* templates */ TemplateIndex(28),
/* parameters */ ParameterIndex(542),
/* return_matcher_indices */ MatcherIndicesIndex(271),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [204] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(45),
/* parameters */ ParameterIndex(691),
/* return_matcher_indices */ MatcherIndicesIndex(271),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [205] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(41),
/* parameters */ ParameterIndex(798),
/* return_matcher_indices */ MatcherIndicesIndex(271),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [206] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
/* templates */ TemplateIndex(31),
/* parameters */ ParameterIndex(694),
/* return_matcher_indices */ MatcherIndicesIndex(271),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [207] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 4,
/* templates */ TemplateIndex(6),
/* parameters */ ParameterIndex(546),
/* return_matcher_indices */ MatcherIndicesIndex(271),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [208] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
/* templates */ TemplateIndex(31),
/* parameters */ ParameterIndex(697),
/* return_matcher_indices */ MatcherIndicesIndex(271),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [209] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(47),
/* parameters */ ParameterIndex(700),
/* return_matcher_indices */ MatcherIndicesIndex(271),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [210] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(8),
/* parameters */ ParameterIndex(703),
/* return_matcher_indices */ MatcherIndicesIndex(4),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [211] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(7),
/* parameters */ ParameterIndex(550),
/* return_matcher_indices */ MatcherIndicesIndex(4),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [212] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(48),
/* parameters */ ParameterIndex(706),
/* return_matcher_indices */ MatcherIndicesIndex(4),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [213] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(800),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [214] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(802),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [215] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(7),
/* parameters */ ParameterIndex(709),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [216] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(804),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [217] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(806),
/* return_matcher_indices */ MatcherIndicesIndex(295),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [218] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(808),
/* return_matcher_indices */ MatcherIndicesIndex(295),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [219] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(7),
/* parameters */ ParameterIndex(712),
/* return_matcher_indices */ MatcherIndicesIndex(295),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [220] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(810),
/* return_matcher_indices */ MatcherIndicesIndex(295),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [221] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(812),
/* return_matcher_indices */ MatcherIndicesIndex(297),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [222] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(814),
/* return_matcher_indices */ MatcherIndicesIndex(297),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [223] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(7),
/* parameters */ ParameterIndex(715),
/* return_matcher_indices */ MatcherIndicesIndex(297),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [224] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(816),
/* return_matcher_indices */ MatcherIndicesIndex(297),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [225] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(28),
/* parameters */ ParameterIndex(796),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [226] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(28),
/* parameters */ ParameterIndex(762),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [227] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(28),
/* parameters */ ParameterIndex(764),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [228] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(28),
/* parameters */ ParameterIndex(766),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [229] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(28),
/* parameters */ ParameterIndex(768),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [230] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(28),
/* parameters */ ParameterIndex(770),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [231] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(41),
/* parameters */ ParameterIndex(798),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [232] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(41),
/* parameters */ ParameterIndex(772),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [233] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(41),
/* parameters */ ParameterIndex(774),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [234] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(41),
/* parameters */ ParameterIndex(776),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [235] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(41),
/* parameters */ ParameterIndex(778),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [236] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(41),
/* parameters */ ParameterIndex(780),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [237] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(28),
/* parameters */ ParameterIndex(700),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [238] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(782),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [239] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(784),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [240] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(786),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [241] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(788),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [242] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(706),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [243] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(39),
/* parameters */ ParameterIndex(820),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [244] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(39),
/* parameters */ ParameterIndex(790),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [245] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(39),
/* parameters */ ParameterIndex(792),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [246] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(39),
/* parameters */ ParameterIndex(794),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [247] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(28),
/* parameters */ ParameterIndex(762),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [248] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(28),
/* parameters */ ParameterIndex(764),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [249] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(28),
/* parameters */ ParameterIndex(766),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [250] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(28),
/* parameters */ ParameterIndex(768),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [251] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(28),
/* parameters */ ParameterIndex(770),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [252] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(41),
/* parameters */ ParameterIndex(772),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [253] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(41),
/* parameters */ ParameterIndex(774),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [254] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(41),
/* parameters */ ParameterIndex(776),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [255] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(41),
/* parameters */ ParameterIndex(778),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [256] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(41),
/* parameters */ ParameterIndex(780),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [257] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(28),
/* parameters */ ParameterIndex(700),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [258] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(782),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [259] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(784),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [260] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(786),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [261] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(788),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [262] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(706),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [263] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(39),
/* parameters */ ParameterIndex(790),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [264] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(39),
/* parameters */ ParameterIndex(792),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [265] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(39),
/* parameters */ ParameterIndex(794),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [266] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(28),
/* parameters */ ParameterIndex(796),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [267] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(28),
/* parameters */ ParameterIndex(156),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [268] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(28),
/* parameters */ ParameterIndex(7),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [269] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(28),
/* parameters */ ParameterIndex(691),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [270] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(28),
/* parameters */ ParameterIndex(518),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [271] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(28),
/* parameters */ ParameterIndex(181),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [272] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(41),
/* parameters */ ParameterIndex(798),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [273] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(41),
/* parameters */ ParameterIndex(161),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [274] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(41),
/* parameters */ ParameterIndex(774),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [275] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(41),
/* parameters */ ParameterIndex(776),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [276] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(41),
/* parameters */ ParameterIndex(522),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [277] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(41),
/* parameters */ ParameterIndex(780),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [278] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(139),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [279] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(0),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [280] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(476),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [281] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(145),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [282] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(821),
/* return_matcher_indices */ MatcherIndicesIndex(293),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [283] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(822),
/* return_matcher_indices */ MatcherIndicesIndex(307),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [284] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(823),
/* return_matcher_indices */ MatcherIndicesIndex(283),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [285] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(824),
/* return_matcher_indices */ MatcherIndicesIndex(319),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [286] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(825),
/* return_matcher_indices */ MatcherIndicesIndex(313),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [287] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(826),
/* return_matcher_indices */ MatcherIndicesIndex(315),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [288] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(827),
/* return_matcher_indices */ MatcherIndicesIndex(317),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [289] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(828),
/* return_matcher_indices */ MatcherIndicesIndex(321),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [290] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(154),
/* return_matcher_indices */ MatcherIndicesIndex(8),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [291] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 4,
/* templates */ TemplateIndex(10),
/* parameters */ ParameterIndex(829),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [292] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 4,
/* templates */ TemplateIndex(14),
/* parameters */ ParameterIndex(830),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [293] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 4,
/* templates */ TemplateIndex(10),
/* parameters */ ParameterIndex(831),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [294] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 4,
/* templates */ TemplateIndex(10),
/* parameters */ ParameterIndex(830),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [295] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 4,
/* templates */ TemplateIndex(18),
/* parameters */ ParameterIndex(830),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [296] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(139),
/* return_matcher_indices */ MatcherIndicesIndex(4),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [297] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(211),
/* return_matcher_indices */ MatcherIndicesIndex(4),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [298] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(7),
/* parameters */ ParameterIndex(0),
/* return_matcher_indices */ MatcherIndicesIndex(4),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [299] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 6,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(7),
/* parameters */ ParameterIndex(37),
/* return_matcher_indices */ MatcherIndicesIndex(4),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [300] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(476),
/* return_matcher_indices */ MatcherIndicesIndex(4),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [301] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(7),
/* parameters */ ParameterIndex(145),
/* return_matcher_indices */ MatcherIndicesIndex(4),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [302] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(139),
/* return_matcher_indices */ MatcherIndicesIndex(4),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [303] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 6,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(139),
/* return_matcher_indices */ MatcherIndicesIndex(4),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [304] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 6,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(7),
/* parameters */ ParameterIndex(0),
/* return_matcher_indices */ MatcherIndicesIndex(4),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [305] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 7,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(7),
/* parameters */ ParameterIndex(0),
/* return_matcher_indices */ MatcherIndicesIndex(4),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [306] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(476),
/* return_matcher_indices */ MatcherIndicesIndex(4),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [307] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 6,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(7),
/* parameters */ ParameterIndex(145),
/* return_matcher_indices */ MatcherIndicesIndex(4),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [308] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(733),
/* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [309] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(736),
/* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [310] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(7),
/* parameters */ ParameterIndex(658),
/* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [311] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(739),
/* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [312] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(742),
/* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [313] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(745),
/* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [314] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(7),
/* parameters */ ParameterIndex(662),
/* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [315] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(748),
/* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [316] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(751),
/* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [317] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(754),
/* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [318] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(7),
/* parameters */ ParameterIndex(666),
/* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [319] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(757),
/* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [320] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(28),
/* parameters */ ParameterIndex(7),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [321] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(28),
/* parameters */ ParameterIndex(181),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [322] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(41),
/* parameters */ ParameterIndex(774),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [323] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(41),
/* parameters */ ParameterIndex(780),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [324] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(0),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [325] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(145),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [326] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(39),
/* parameters */ ParameterIndex(792),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [327] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(139),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [328] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(211),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [329] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(7),
/* parameters */ ParameterIndex(0),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [330] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 6,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(7),
/* parameters */ ParameterIndex(37),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [331] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(476),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [332] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(7),
/* parameters */ ParameterIndex(145),
/* return_matcher_indices */ MatcherIndicesIndex(287),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [333] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(54),
/* parameters */ ParameterIndex(491),
/* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [334] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(53),
/* parameters */ ParameterIndex(498),
/* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [335] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(54),
/* parameters */ ParameterIndex(507),
/* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [336] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(53),
/* parameters */ ParameterIndex(512),
/* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [337] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(54),
/* parameters */ ParameterIndex(674),
/* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [338] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(53),
/* parameters */ ParameterIndex(678),
/* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [339] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(39),
/* parameters */ ParameterIndex(820),
/* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [340] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(39),
/* parameters */ ParameterIndex(790),
/* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [341] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(39),
/* parameters */ ParameterIndex(792),
/* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [342] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(39),
/* parameters */ ParameterIndex(794),
/* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [343] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(50),
/* parameters */ ParameterIndex(495),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [344] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(49),
/* parameters */ ParameterIndex(502),
/* return_matcher_indices */ MatcherIndicesIndex(265),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [345] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(49),
/* parameters */ ParameterIndex(504),
/* return_matcher_indices */ MatcherIndicesIndex(265),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [346] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(49),
/* parameters */ ParameterIndex(503),
/* return_matcher_indices */ MatcherIndicesIndex(265),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [347] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(28),
/* parameters */ ParameterIndex(766),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [348] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(41),
/* parameters */ ParameterIndex(776),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [349] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(39),
/* parameters */ ParameterIndex(794),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [350] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(28),
/* parameters */ ParameterIndex(700),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [351] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline, OverloadFlag::kMemberFunction),
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(706),
/* return_matcher_indices */ MatcherIndicesIndex(233),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [352] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(50),
/* parameters */ ParameterIndex(496),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [353] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(49),
/* parameters */ ParameterIndex(505),
/* return_matcher_indices */ MatcherIndicesIndex(265),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [354] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(50),
/* parameters */ ParameterIndex(153),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [355] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(49),
/* parameters */ ParameterIndex(502),
/* return_matcher_indices */ MatcherIndicesIndex(265),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [356] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 1,
/* templates */ TemplateIndex(52),
/* parameters */ ParameterIndex(153),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [357] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(51),
/* parameters */ ParameterIndex(516),
/* return_matcher_indices */ MatcherIndicesIndex(265),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [358] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(37),
/* parameters */ ParameterIndex(151),
/* return_matcher_indices */ MatcherIndicesIndex(84),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [359] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(37),
/* parameters */ ParameterIndex(682),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [360] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(37),
/* parameters */ ParameterIndex(760),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [361] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(37),
/* parameters */ ParameterIndex(682),
/* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [362] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(685),
/* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [363] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(49),
/* parameters */ ParameterIndex(502),
/* return_matcher_indices */ MatcherIndicesIndex(1),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [364] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 2,
/* templates */ TemplateIndex(49),
/* parameters */ ParameterIndex(502),
/* return_matcher_indices */ MatcherIndicesIndex(1),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [365] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(154),
/* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [366] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 1,
/* num_explicit_templates */ 0,
/* num_templates */ 0,
/* templates */ TemplateIndex(/* invalid */),
/* parameters */ ParameterIndex(485),
/* return_matcher_indices */ MatcherIndicesIndex(232),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [367] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 1,
/* num_explicit_templates */ 1,
/* num_templates */ 5,
/* templates */ TemplateIndex(0),
/* parameters */ ParameterIndex(832),
/* return_matcher_indices */ MatcherIndicesIndex(3),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [368] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 4,
/* templates */ TemplateIndex(1),
/* parameters */ ParameterIndex(481),
/* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [369] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 5,
/* num_explicit_templates */ 0,
/* num_templates */ 4,
/* templates */ TemplateIndex(1),
/* parameters */ ParameterIndex(486),
/* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [370] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 3,
/* num_explicit_templates */ 0,
/* num_templates */ 4,
/* templates */ TemplateIndex(2),
/* parameters */ ParameterIndex(670),
/* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [371] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 4,
/* num_explicit_templates */ 0,
/* num_templates */ 4,
/* templates */ TemplateIndex(2),
/* parameters */ ParameterIndex(670),
/* return_matcher_indices */ MatcherIndicesIndex(/* invalid */),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
{
/* [372] */
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
/* num_parameters */ 2,
/* num_explicit_templates */ 0,
/* num_templates */ 3,
/* templates */ TemplateIndex(34),
/* parameters */ ParameterIndex(818),
/* return_matcher_indices */ MatcherIndicesIndex(63),
/* const_eval_fn */ ConstEvalFunctionIndex(/* invalid */),
},
};
static_assert(OverloadIndex::CanIndex(kOverloads),
"OverloadIndex is not large enough to index kOverloads");
constexpr IntrinsicInfo kBuiltins[] = {
{
/* [0] */
/* fn atomic_compare_exchange_weak_explicit[T : iu32, S : workgroup_or_storage](ptr<S, atomic<T>, read_write>, ptr<function, T, read_write>, T, u32, u32) -> bool */
/* num overloads */ 1,
/* overloads */ OverloadIndex(358),
},
{
/* [1] */
/* fn atomic_exchange_explicit[T : iu32, S : workgroup_or_storage](ptr<S, atomic<T>, read_write>, T, u32) -> T */
/* num overloads */ 1,
/* overloads */ OverloadIndex(359),
},
{
/* [2] */
/* fn atomic_fetch_add_explicit[T : iu32, S : workgroup_or_storage](ptr<S, atomic<T>, read_write>, T, u32) -> T */
/* num overloads */ 1,
/* overloads */ OverloadIndex(359),
},
{
/* [3] */
/* fn atomic_fetch_and_explicit[T : iu32, S : workgroup_or_storage](ptr<S, atomic<T>, read_write>, T, u32) -> T */
/* num overloads */ 1,
/* overloads */ OverloadIndex(359),
},
{
/* [4] */
/* fn atomic_fetch_max_explicit[T : iu32, S : workgroup_or_storage](ptr<S, atomic<T>, read_write>, T, u32) -> T */
/* num overloads */ 1,
/* overloads */ OverloadIndex(359),
},
{
/* [5] */
/* fn atomic_fetch_min_explicit[T : iu32, S : workgroup_or_storage](ptr<S, atomic<T>, read_write>, T, u32) -> T */
/* num overloads */ 1,
/* overloads */ OverloadIndex(359),
},
{
/* [6] */
/* fn atomic_fetch_or_explicit[T : iu32, S : workgroup_or_storage](ptr<S, atomic<T>, read_write>, T, u32) -> T */
/* num overloads */ 1,
/* overloads */ OverloadIndex(359),
},
{
/* [7] */
/* fn atomic_fetch_sub_explicit[T : iu32, S : workgroup_or_storage](ptr<S, atomic<T>, read_write>, T, u32) -> T */
/* num overloads */ 1,
/* overloads */ OverloadIndex(359),
},
{
/* [8] */
/* fn atomic_fetch_xor_explicit[T : iu32, S : workgroup_or_storage](ptr<S, atomic<T>, read_write>, T, u32) -> T */
/* num overloads */ 1,
/* overloads */ OverloadIndex(359),
},
{
/* [9] */
/* fn atomic_load_explicit[T : iu32, S : workgroup_or_storage](ptr<S, atomic<T>, read_write>, u32) -> T */
/* num overloads */ 1,
/* overloads */ OverloadIndex(360),
},
{
/* [10] */
/* fn atomic_store_explicit[T : iu32, S : workgroup_or_storage](ptr<S, atomic<T>, read_write>, T, u32) */
/* num overloads */ 1,
/* overloads */ OverloadIndex(361),
},
{
/* [11] */
/* fn atomic_max_explicit(ptr<storage, atomic<u64>, read_write>, u64, u32) */
/* num overloads */ 1,
/* overloads */ OverloadIndex(362),
},
{
/* [12] */
/* fn atomic_min_explicit(ptr<storage, atomic<u64>, read_write>, u64, u32) */
/* num overloads */ 1,
/* overloads */ OverloadIndex(362),
},
{
/* [13] */
/* fn fence[F : texel_format, A : access](texture: texture_storage_1d<F, A>) */
/* fn fence[F : texel_format, A : access](texture: texture_storage_2d<F, A>) */
/* fn fence[F : texel_format, A : access](texture: texture_storage_2d_array<F, A>) */
/* fn fence[F : texel_format, A : access](texture: texture_storage_3d<F, A>) */
/* num overloads */ 4,
/* overloads */ OverloadIndex(339),
},
{
/* [14] */
/* fn gather[T : fiu32](texture: texture_2d<T>, sampler: sampler, coords: vec2<f32>, @const offset: vec2<i32>, component: u32) -> vec4<T> */
/* fn gather[T : f32, F : texture_filter](texture: texture_2d_filtered<T, F>, sampler: sampler, coords: vec2<f32>, @const offset: vec2<i32>, component: u32) -> vec4<T> */
/* fn gather[T : f32, K : sampler_filter](texture: texture_2d<T>, sampler: sampler_filtered<K>, coords: vec2<f32>, @const offset: vec2<i32>, component: u32) -> vec4<T> */
/* fn gather[T : f32, K : sampler_filter](texture: texture_2d_filtered<T, filterable>, sampler: sampler_filtered<K>, coords: vec2<f32>, @const offset: vec2<i32>, component: u32) -> vec4<T> */
/* fn gather[T : f32](texture: texture_2d_filtered<T, unfilterable>, sampler: sampler_filtered<non_filtering>, coords: vec2<f32>, @const offset: vec2<i32>, component: u32) -> vec4<T> */
/* fn gather[T : fiu32, A : iu32](texture: texture_2d_array<T>, sampler: sampler, coords: vec2<f32>, array_index: A, @const offset: vec2<i32>, component: u32) -> vec4<T> */
/* fn gather[T : f32, A : iu32, F : texture_filter](texture: texture_2d_array_filtered<T, F>, sampler: sampler, coords: vec2<f32>, array_index: A, @const offset: vec2<i32>, component: u32) -> vec4<T> */
/* fn gather[T : f32, A : iu32, K : sampler_filter](texture: texture_2d_array<T>, sampler: sampler_filtered<K>, coords: vec2<f32>, array_index: A, @const offset: vec2<i32>, component: u32) -> vec4<T> */
/* fn gather[T : f32, A : iu32, K : sampler_filter](texture: texture_2d_array_filtered<T, filterable>, sampler: sampler_filtered<K>, coords: vec2<f32>, array_index: A, @const offset: vec2<i32>, component: u32) -> vec4<T> */
/* fn gather[T : f32, A : iu32](texture: texture_2d_array_filtered<T, unfilterable>, sampler: sampler_filtered<non_filtering>, coords: vec2<f32>, array_index: A, @const offset: vec2<i32>, component: u32) -> vec4<T> */
/* fn gather[T : fiu32](texture: texture_cube<T>, sampler: sampler, coords: vec3<f32>, component: u32) -> vec4<T> */
/* fn gather[T : f32, F : texture_filter](texture: texture_cube_filtered<T, F>, sampler: sampler, coords: vec3<f32>, component: u32) -> vec4<T> */
/* fn gather[T : f32, K : sampler_filter](texture: texture_cube<T>, sampler: sampler_filtered<K>, coords: vec3<f32>, component: u32) -> vec4<T> */
/* fn gather[T : f32, K : sampler_filter](texture: texture_cube_filtered<T, filterable>, sampler: sampler_filtered<K>, coords: vec3<f32>, component: u32) -> vec4<T> */
/* fn gather[T : f32](texture: texture_cube_filtered<T, unfilterable>, sampler: sampler_filtered<non_filtering>, coords: vec3<f32>, component: u32) -> vec4<T> */
/* fn gather[T : fiu32, A : iu32](texture: texture_cube_array<T>, sampler: sampler, coords: vec3<f32>, array_index: A, component: u32) -> vec4<T> */
/* fn gather[T : f32, A : iu32, F : texture_filter](texture: texture_cube_array_filtered<T, F>, sampler: sampler, coords: vec3<f32>, array_index: A, component: u32) -> vec4<T> */
/* fn gather[T : f32, A : iu32, K : sampler_filter](texture: texture_cube_array<T>, sampler: sampler_filtered<K>, coords: vec3<f32>, array_index: A, component: u32) -> vec4<T> */
/* fn gather[T : f32, A : iu32, K : sampler_filter](texture: texture_cube_array_filtered<T, filterable>, sampler: sampler_filtered<K>, coords: vec3<f32>, array_index: A, component: u32) -> vec4<T> */
/* fn gather[T : f32, A : iu32](texture: texture_cube_array_filtered<T, unfilterable>, sampler: sampler_filtered<non_filtering>, coords: vec3<f32>, array_index: A, component: u32) -> vec4<T> */
/* fn gather(texture: texture_depth_2d, sampler: sampler, coords: vec2<f32>, @const offset: vec2<i32>) -> vec4<f32> */
/* fn gather[A : iu32](texture: texture_depth_2d_array, sampler: sampler, coords: vec2<f32>, array_index: A, @const offset: vec2<i32>) -> vec4<f32> */
/* fn gather(texture: texture_depth_cube, sampler: sampler, coords: vec3<f32>) -> vec4<f32> */
/* fn gather[A : iu32](texture: texture_depth_cube_array, sampler: sampler, coords: vec3<f32>, array_index: A) -> vec4<f32> */
/* num overloads */ 24,
/* overloads */ OverloadIndex(177),
},
{
/* [15] */
/* fn gather_compare(texture: texture_depth_2d, sampler: sampler_comparison, coords: vec2<f32>, depth_ref: f32) -> vec4<f32> */
/* fn gather_compare(texture: texture_depth_2d, sampler: sampler_comparison, coords: vec2<f32>, depth_ref: f32, @const offset: vec2<i32>) -> vec4<f32> */
/* fn gather_compare[A : iu32](texture: texture_depth_2d_array, sampler: sampler_comparison, coords: vec2<f32>, array_index: A, depth_ref: f32) -> vec4<f32> */
/* fn gather_compare[A : iu32](texture: texture_depth_2d_array, sampler: sampler_comparison, coords: vec2<f32>, array_index: A, depth_ref: f32, @const offset: vec2<i32>) -> vec4<f32> */
/* fn gather_compare(texture: texture_depth_cube, sampler: sampler_comparison, coords: vec3<f32>, depth_ref: f32) -> vec4<f32> */
/* fn gather_compare[A : iu32](texture: texture_depth_cube_array, sampler: sampler_comparison, coords: vec3<f32>, array_index: A, depth_ref: f32) -> vec4<f32> */
/* num overloads */ 6,
/* overloads */ OverloadIndex(327),
},
{
/* [16] */
/* fn get_width[T : fiu32](texture: texture_1d<T>) -> u32 */
/* fn get_width[T : fiu32](texture: texture_2d<T>, u32) -> u32 */
/* fn get_width[T : fiu32](texture: texture_2d_array<T>, u32) -> u32 */
/* fn get_width[T : fiu32](texture: texture_3d<T>, u32) -> u32 */
/* fn get_width[T : fiu32](texture: texture_cube<T>, u32) -> u32 */
/* fn get_width[T : fiu32](texture: texture_cube_array<T>, u32) -> u32 */
/* fn get_width[T : f32, F : texture_filter](texture: texture_1d_filtered<T, F>) -> u32 */
/* fn get_width[T : f32, F : texture_filter](texture: texture_2d_filtered<T, F>, u32) -> u32 */
/* fn get_width[T : f32, F : texture_filter](texture: texture_2d_array_filtered<T, F>, u32) -> u32 */
/* fn get_width[T : f32, F : texture_filter](texture: texture_3d_filtered<T, F>, u32) -> u32 */
/* fn get_width[T : f32, F : texture_filter](texture: texture_cube_filtered<T, F>, u32) -> u32 */
/* fn get_width[T : f32, F : texture_filter](texture: texture_cube_array_filtered<T, F>, u32) -> u32 */
/* fn get_width[T : fiu32](texture: texture_multisampled_2d<T>) -> u32 */
/* fn get_width(texture: texture_depth_2d, u32) -> u32 */
/* fn get_width(texture: texture_depth_2d_array, u32) -> u32 */
/* fn get_width(texture: texture_depth_cube, u32) -> u32 */
/* fn get_width(texture: texture_depth_cube_array, u32) -> u32 */
/* fn get_width(texture: texture_depth_multisampled_2d) -> u32 */
/* fn get_width[F : texel_format, A : access](texture: texture_storage_1d<F, A>) -> u32 */
/* fn get_width[F : texel_format, A : access](texture: texture_storage_2d<F, A>, u32) -> u32 */
/* fn get_width[F : texel_format, A : access](texture: texture_storage_2d_array<F, A>, u32) -> u32 */
/* fn get_width[F : texel_format, A : access](texture: texture_storage_3d<F, A>, u32) -> u32 */
/* num overloads */ 22,
/* overloads */ OverloadIndex(225),
},
{
/* [17] */
/* fn get_height[T : fiu32](texture: texture_2d<T>, u32) -> u32 */
/* fn get_height[T : fiu32](texture: texture_2d_array<T>, u32) -> u32 */
/* fn get_height[T : fiu32](texture: texture_3d<T>, u32) -> u32 */
/* fn get_height[T : fiu32](texture: texture_cube<T>, u32) -> u32 */
/* fn get_height[T : fiu32](texture: texture_cube_array<T>, u32) -> u32 */
/* fn get_height[T : f32, F : texture_filter](texture: texture_2d_filtered<T, F>, u32) -> u32 */
/* fn get_height[T : f32, F : texture_filter](texture: texture_2d_array_filtered<T, F>, u32) -> u32 */
/* fn get_height[T : f32, F : texture_filter](texture: texture_3d_filtered<T, F>, u32) -> u32 */
/* fn get_height[T : f32, F : texture_filter](texture: texture_cube_filtered<T, F>, u32) -> u32 */
/* fn get_height[T : f32, F : texture_filter](texture: texture_cube_array_filtered<T, F>, u32) -> u32 */
/* fn get_height[T : fiu32](texture: texture_multisampled_2d<T>) -> u32 */
/* fn get_height(texture: texture_depth_2d, u32) -> u32 */
/* fn get_height(texture: texture_depth_2d_array, u32) -> u32 */
/* fn get_height(texture: texture_depth_cube, u32) -> u32 */
/* fn get_height(texture: texture_depth_cube_array, u32) -> u32 */
/* fn get_height(texture: texture_depth_multisampled_2d) -> u32 */
/* fn get_height[F : texel_format, A : access](texture: texture_storage_2d<F, A>, u32) -> u32 */
/* fn get_height[F : texel_format, A : access](texture: texture_storage_2d_array<F, A>, u32) -> u32 */
/* fn get_height[F : texel_format, A : access](texture: texture_storage_3d<F, A>, u32) -> u32 */
/* num overloads */ 19,
/* overloads */ OverloadIndex(247),
},
{
/* [18] */
/* fn get_depth[T : fiu32](texture: texture_3d<T>, u32) -> u32 */
/* fn get_depth[T : f32, F : texture_filter](texture: texture_3d_filtered<T, F>, u32) -> u32 */
/* fn get_depth[F : texel_format, A : access](texture: texture_storage_3d<F, A>, u32) -> u32 */
/* num overloads */ 3,
/* overloads */ OverloadIndex(347),
},
{
/* [19] */
/* fn get_array_size[T : fiu32](texture: texture_2d_array<T>) -> u32 */
/* fn get_array_size[T : fiu32](texture: texture_cube_array<T>) -> u32 */
/* fn get_array_size[T : f32, F : texture_filter](texture: texture_2d_array_filtered<T, F>) -> u32 */
/* fn get_array_size[T : f32, F : texture_filter](texture: texture_cube_array_filtered<T, F>) -> u32 */
/* fn get_array_size(texture: texture_depth_2d_array) -> u32 */
/* fn get_array_size(texture: texture_depth_cube_array) -> u32 */
/* fn get_array_size[F : texel_format, A : access](texture: texture_storage_2d_array<F, A>) -> u32 */
/* num overloads */ 7,
/* overloads */ OverloadIndex(320),
},
{
/* [20] */
/* fn get_num_mip_levels[T : fiu32](texture: texture_1d<T>) -> u32 */
/* fn get_num_mip_levels[T : fiu32](texture: texture_2d<T>) -> u32 */
/* fn get_num_mip_levels[T : fiu32](texture: texture_2d_array<T>) -> u32 */
/* fn get_num_mip_levels[T : fiu32](texture: texture_3d<T>) -> u32 */
/* fn get_num_mip_levels[T : fiu32](texture: texture_cube<T>) -> u32 */
/* fn get_num_mip_levels[T : fiu32](texture: texture_cube_array<T>) -> u32 */
/* fn get_num_mip_levels[T : f32, F : texture_filter](texture: texture_1d_filtered<T, F>) -> u32 */
/* fn get_num_mip_levels[T : f32, F : texture_filter](texture: texture_2d_filtered<T, F>) -> u32 */
/* fn get_num_mip_levels[T : f32, F : texture_filter](texture: texture_2d_array_filtered<T, F>) -> u32 */
/* fn get_num_mip_levels[T : f32, F : texture_filter](texture: texture_3d_filtered<T, F>) -> u32 */
/* fn get_num_mip_levels[T : f32, F : texture_filter](texture: texture_cube_filtered<T, F>) -> u32 */
/* fn get_num_mip_levels[T : f32, F : texture_filter](texture: texture_cube_array_filtered<T, F>) -> u32 */
/* fn get_num_mip_levels(texture: texture_depth_2d) -> u32 */
/* fn get_num_mip_levels(texture: texture_depth_2d_array) -> u32 */
/* fn get_num_mip_levels(texture: texture_depth_cube) -> u32 */
/* fn get_num_mip_levels(texture: texture_depth_cube_array) -> u32 */
/* num overloads */ 16,
/* overloads */ OverloadIndex(266),
},
{
/* [21] */
/* fn get_num_samples[T : fiu32](texture: texture_multisampled_2d<T>) -> u32 */
/* fn get_num_samples(texture: texture_depth_multisampled_2d) -> u32 */
/* num overloads */ 2,
/* overloads */ OverloadIndex(350),
},
{
/* [22] */
/* fn read[T : fiu32](texture: texture_1d<T>, coords: u32) -> vec4<T> */
/* fn read[T : fiu32, L : iu32](texture: texture_2d<T>, coords: vec2<u32>, level: L) -> vec4<T> */
/* fn read[T : fiu32, A : iu32, L : iu32](texture: texture_2d_array<T>, coords: vec2<u32>, array_index: A, level: L) -> vec4<T> */
/* fn read[T : fiu32, L : iu32](texture: texture_3d<T>, coords: vec3<u32>, level: L) -> vec4<T> */
/* fn read[T : f32, F : texture_filter](texture: texture_1d_filtered<T, F>, coords: u32) -> vec4<T> */
/* fn read[T : f32, L : iu32, F : texture_filter](texture: texture_2d_filtered<T, F>, coords: vec2<u32>, level: L) -> vec4<T> */
/* fn read[T : f32, A : iu32, L : iu32, F : texture_filter](texture: texture_2d_array_filtered<T, F>, coords: vec2<u32>, array_index: A, level: L) -> vec4<T> */
/* fn read[T : f32, L : iu32, F : texture_filter](texture: texture_3d_filtered<T, F>, coords: vec3<u32>, level: L) -> vec4<T> */
/* fn read[T : fiu32, S : iu32](texture: texture_multisampled_2d<T>, coords: vec2<u32>, sample_index: S) -> vec4<T> */
/* fn read[L : iu32](texture: texture_depth_2d, coords: vec2<u32>, level: L) -> f32 */
/* fn read[A : iu32, L : iu32](texture: texture_depth_2d_array, coords: vec2<u32>, array_index: A, level: L) -> f32 */
/* fn read[S : iu32](texture: texture_depth_multisampled_2d, coords: vec2<u32>, sample_index: S) -> f32 */
/* fn read(texture: texture_storage_1d<f32_texel_format, readable>, coords: u32) -> vec4<f32> */
/* fn read(texture: texture_storage_2d<f32_texel_format, readable>, coords: vec2<u32>) -> vec4<f32> */
/* fn read[A : iu32](texture: texture_storage_2d_array<f32_texel_format, readable>, coords: vec2<u32>, array_index: A) -> vec4<f32> */
/* fn read(texture: texture_storage_3d<f32_texel_format, readable>, coords: vec3<u32>) -> vec4<f32> */
/* fn read(texture: texture_storage_1d<i32_texel_format, readable>, coords: u32) -> vec4<i32> */
/* fn read(texture: texture_storage_2d<i32_texel_format, readable>, coords: vec2<u32>) -> vec4<i32> */
/* fn read[A : iu32](texture: texture_storage_2d_array<i32_texel_format, readable>, coords: vec2<u32>, array_index: A) -> vec4<i32> */
/* fn read(texture: texture_storage_3d<i32_texel_format, readable>, coords: vec3<u32>) -> vec4<i32> */
/* fn read(texture: texture_storage_1d<u32_texel_format, readable>, coords: u32) -> vec4<u32> */
/* fn read(texture: texture_storage_2d<u32_texel_format, readable>, coords: vec2<u32>) -> vec4<u32> */
/* fn read[A : iu32](texture: texture_storage_2d_array<u32_texel_format, readable>, coords: vec2<u32>, array_index: A) -> vec4<u32> */
/* fn read(texture: texture_storage_3d<u32_texel_format, readable>, coords: vec3<u32>) -> vec4<u32> */
/* num overloads */ 24,
/* overloads */ OverloadIndex(201),
},
{
/* [23] */
/* fn sample(texture: texture_1d<f32>, sampler: sampler, coords: f32) -> vec4<f32> */
/* fn sample[F : texture_filter](texture: texture_1d_filtered<f32, F>, sampler: sampler, coords: f32) -> vec4<f32> */
/* fn sample[K : sampler_filter](texture: texture_1d<f32>, sampler: sampler_filtered<K>, coords: f32) -> vec4<f32> */
/* fn sample[K : sampler_filter](texture: texture_1d_filtered<f32, filterable>, sampler: sampler_filtered<K>, coords: f32) -> vec4<f32> */
/* fn sample(texture: texture_1d_filtered<f32, unfilterable>, sampler: sampler_filtered<non_filtering>, coords: f32) -> vec4<f32> */
/* fn sample(texture: texture_2d<f32>, sampler: sampler, coords: vec2<f32>) -> vec4<f32> */
/* fn sample[F : texture_filter](texture: texture_2d_filtered<f32, F>, sampler: sampler, coords: vec2<f32>) -> vec4<f32> */
/* fn sample[K : sampler_filter](texture: texture_2d<f32>, sampler: sampler_filtered<K>, coords: vec2<f32>) -> vec4<f32> */
/* fn sample[K : sampler_filter](texture: texture_2d_filtered<f32, filterable>, sampler: sampler_filtered<K>, coords: vec2<f32>) -> vec4<f32> */
/* fn sample(texture: texture_2d_filtered<f32, unfilterable>, sampler: sampler_filtered<non_filtering>, coords: vec2<f32>) -> vec4<f32> */
/* fn sample(texture: texture_2d<f32>, sampler: sampler, coords: vec2<f32>, @const offset: vec2<i32>) -> vec4<f32> */
/* fn sample[F : texture_filter](texture: texture_2d_filtered<f32, F>, sampler: sampler, coords: vec2<f32>, @const offset: vec2<i32>) -> vec4<f32> */
/* fn sample[K : sampler_filter](texture: texture_2d<f32>, sampler: sampler_filtered<K>, coords: vec2<f32>, @const offset: vec2<i32>) -> vec4<f32> */
/* fn sample[K : sampler_filter](texture: texture_2d_filtered<f32, filterable>, sampler: sampler_filtered<K>, coords: vec2<f32>, @const offset: vec2<i32>) -> vec4<f32> */
/* fn sample(texture: texture_2d_filtered<f32, unfilterable>, sampler: sampler_filtered<non_filtering>, coords: vec2<f32>, @const offset: vec2<i32>) -> vec4<f32> */
/* fn sample[A : iu32](texture: texture_2d_array<f32>, sampler: sampler, coords: vec2<f32>, array_index: A) -> vec4<f32> */
/* fn sample[A : iu32, F : texture_filter](texture: texture_2d_array_filtered<f32, F>, sampler: sampler, coords: vec2<f32>, array_index: A) -> vec4<f32> */
/* fn sample[A : iu32, K : sampler_filter](texture: texture_2d_array<f32>, sampler: sampler_filtered<K>, coords: vec2<f32>, array_index: A) -> vec4<f32> */
/* fn sample[A : iu32, K : sampler_filter](texture: texture_2d_array_filtered<f32, filterable>, sampler: sampler_filtered<K>, coords: vec2<f32>, array_index: A) -> vec4<f32> */
/* fn sample[A : iu32](texture: texture_2d_array_filtered<f32, unfilterable>, sampler: sampler_filtered<non_filtering>, coords: vec2<f32>, array_index: A) -> vec4<f32> */
/* fn sample[A : iu32](texture: texture_2d_array<f32>, sampler: sampler, coords: vec2<f32>, array_index: A, @const offset: vec2<i32>) -> vec4<f32> */
/* fn sample[A : iu32, F : texture_filter](texture: texture_2d_array_filtered<f32, F>, sampler: sampler, coords: vec2<f32>, array_index: A, @const offset: vec2<i32>) -> vec4<f32> */
/* fn sample[A : iu32, K : sampler_filter](texture: texture_2d_array<f32>, sampler: sampler_filtered<K>, coords: vec2<f32>, array_index: A, @const offset: vec2<i32>) -> vec4<f32> */
/* fn sample[A : iu32, K : sampler_filter](texture: texture_2d_array_filtered<f32, filterable>, sampler: sampler_filtered<K>, coords: vec2<f32>, array_index: A, @const offset: vec2<i32>) -> vec4<f32> */
/* fn sample[A : iu32](texture: texture_2d_array_filtered<f32, unfilterable>, sampler: sampler_filtered<non_filtering>, coords: vec2<f32>, array_index: A, @const offset: vec2<i32>) -> vec4<f32> */
/* fn sample(texture: texture_3d<f32>, sampler: sampler, coords: vec3<f32>) -> vec4<f32> */
/* fn sample[F : texture_filter](texture: texture_3d_filtered<f32, F>, sampler: sampler, coords: vec3<f32>) -> vec4<f32> */
/* fn sample[K : sampler_filter](texture: texture_3d<f32>, sampler: sampler_filtered<K>, coords: vec3<f32>) -> vec4<f32> */
/* fn sample[K : sampler_filter](texture: texture_3d_filtered<f32, filterable>, sampler: sampler_filtered<K>, coords: vec3<f32>) -> vec4<f32> */
/* fn sample(texture: texture_3d_filtered<f32, unfilterable>, sampler: sampler_filtered<non_filtering>, coords: vec3<f32>) -> vec4<f32> */
/* fn sample(texture: texture_3d<f32>, sampler: sampler, coords: vec3<f32>, @const offset: vec3<i32>) -> vec4<f32> */
/* fn sample[F : texture_filter](texture: texture_3d_filtered<f32, F>, sampler: sampler, coords: vec3<f32>, @const offset: vec3<i32>) -> vec4<f32> */
/* fn sample[K : sampler_filter](texture: texture_3d<f32>, sampler: sampler_filtered<K>, coords: vec3<f32>, @const offset: vec3<i32>) -> vec4<f32> */
/* fn sample[K : sampler_filter](texture: texture_3d_filtered<f32, filterable>, sampler: sampler_filtered<K>, coords: vec3<f32>, @const offset: vec3<i32>) -> vec4<f32> */
/* fn sample(texture: texture_3d_filtered<f32, unfilterable>, sampler: sampler_filtered<non_filtering>, coords: vec3<f32>, @const offset: vec3<i32>) -> vec4<f32> */
/* fn sample(texture: texture_cube<f32>, sampler: sampler, coords: vec3<f32>) -> vec4<f32> */
/* fn sample[F : texture_filter](texture: texture_cube_filtered<f32, F>, sampler: sampler, coords: vec3<f32>) -> vec4<f32> */
/* fn sample[K : sampler_filter](texture: texture_cube<f32>, sampler: sampler_filtered<K>, coords: vec3<f32>) -> vec4<f32> */
/* fn sample[K : sampler_filter](texture: texture_cube_filtered<f32, filterable>, sampler: sampler_filtered<K>, coords: vec3<f32>) -> vec4<f32> */
/* fn sample(texture: texture_cube_filtered<f32, unfilterable>, sampler: sampler_filtered<non_filtering>, coords: vec3<f32>) -> vec4<f32> */
/* fn sample[A : iu32](texture: texture_cube_array<f32>, sampler: sampler, coords: vec3<f32>, array_index: A) -> vec4<f32> */
/* fn sample[A : iu32, F : texture_filter](texture: texture_cube_array_filtered<f32, F>, sampler: sampler, coords: vec3<f32>, array_index: A) -> vec4<f32> */
/* fn sample[A : iu32, K : sampler_filter](texture: texture_cube_array<f32>, sampler: sampler_filtered<K>, coords: vec3<f32>, array_index: A) -> vec4<f32> */
/* fn sample[A : iu32, K : sampler_filter](texture: texture_cube_array_filtered<f32, filterable>, sampler: sampler_filtered<K>, coords: vec3<f32>, array_index: A) -> vec4<f32> */
/* fn sample[A : iu32](texture: texture_cube_array_filtered<f32, unfilterable>, sampler: sampler_filtered<non_filtering>, coords: vec3<f32>, array_index: A) -> vec4<f32> */
/* fn sample(texture: texture_depth_2d, sampler: sampler, coords: vec2<f32>) -> f32 */
/* fn sample(texture: texture_depth_2d, sampler: sampler, coords: vec2<f32>, @const offset: vec2<i32>) -> f32 */
/* fn sample[A : iu32](texture: texture_depth_2d_array, sampler: sampler, coords: vec2<f32>, array_index: A) -> f32 */
/* fn sample[A : iu32](texture: texture_depth_2d_array, sampler: sampler, coords: vec2<f32>, array_index: A, @const offset: vec2<i32>) -> f32 */
/* fn sample(texture: texture_depth_cube, sampler: sampler, coords: vec3<f32>) -> f32 */
/* fn sample[A : iu32](texture: texture_depth_cube_array, sampler: sampler, coords: vec3<f32>, array_index: A) -> f32 */
/* fn sample(texture: texture_2d<f32>, sampler: sampler, coords: vec2<f32>, level: level) -> vec4<f32> */
/* fn sample[F : texture_filter](texture: texture_2d_filtered<f32, F>, sampler: sampler, coords: vec2<f32>, level: level) -> vec4<f32> */
/* fn sample[K : sampler_filter](texture: texture_2d<f32>, sampler: sampler_filtered<K>, coords: vec2<f32>, level: level) -> vec4<f32> */
/* fn sample[K : sampler_filter](texture: texture_2d_filtered<f32, filterable>, sampler: sampler_filtered<K>, coords: vec2<f32>, level: level) -> vec4<f32> */
/* fn sample(texture: texture_2d_filtered<f32, unfilterable>, sampler: sampler_filtered<non_filtering>, coords: vec2<f32>, level: level) -> vec4<f32> */
/* fn sample(texture: texture_2d<f32>, sampler: sampler, coords: vec2<f32>, level: level, @const offset: vec2<i32>) -> vec4<f32> */
/* fn sample[F : texture_filter](texture: texture_2d_filtered<f32, F>, sampler: sampler, coords: vec2<f32>, level: level, @const offset: vec2<i32>) -> vec4<f32> */
/* fn sample[K : sampler_filter](texture: texture_2d<f32>, sampler: sampler_filtered<K>, coords: vec2<f32>, level: level, @const offset: vec2<i32>) -> vec4<f32> */
/* fn sample[K : sampler_filter](texture: texture_2d_filtered<f32, filterable>, sampler: sampler_filtered<K>, coords: vec2<f32>, level: level, @const offset: vec2<i32>) -> vec4<f32> */
/* fn sample(texture: texture_2d_filtered<f32, unfilterable>, sampler: sampler_filtered<non_filtering>, coords: vec2<f32>, level: level, @const offset: vec2<i32>) -> vec4<f32> */
/* fn sample[A : iu32](texture: texture_2d_array<f32>, sampler: sampler, coords: vec2<f32>, array_index: A, level: level) -> vec4<f32> */
/* fn sample[A : iu32, F : texture_filter](texture: texture_2d_array_filtered<f32, F>, sampler: sampler, coords: vec2<f32>, array_index: A, level: level) -> vec4<f32> */
/* fn sample[A : iu32, K : sampler_filter](texture: texture_2d_array<f32>, sampler: sampler_filtered<K>, coords: vec2<f32>, array_index: A, level: level) -> vec4<f32> */
/* fn sample[A : iu32, K : sampler_filter](texture: texture_2d_array_filtered<f32, filterable>, sampler: sampler_filtered<K>, coords: vec2<f32>, array_index: A, level: level) -> vec4<f32> */
/* fn sample[A : iu32](texture: texture_2d_array_filtered<f32, unfilterable>, sampler: sampler_filtered<non_filtering>, coords: vec2<f32>, array_index: A, level: level) -> vec4<f32> */
/* fn sample[A : iu32](texture: texture_2d_array<f32>, sampler: sampler, coords: vec2<f32>, array_index: A, level: level, @const offset: vec2<i32>) -> vec4<f32> */
/* fn sample[A : iu32, F : texture_filter](texture: texture_2d_array_filtered<f32, F>, sampler: sampler, coords: vec2<f32>, array_index: A, level: level, @const offset: vec2<i32>) -> vec4<f32> */
/* fn sample[A : iu32, K : sampler_filter](texture: texture_2d_array<f32>, sampler: sampler_filtered<K>, coords: vec2<f32>, array_index: A, level: level, @const offset: vec2<i32>) -> vec4<f32> */
/* fn sample[A : iu32, K : sampler_filter](texture: texture_2d_array_filtered<f32, filterable>, sampler: sampler_filtered<K>, coords: vec2<f32>, array_index: A, level: level, @const offset: vec2<i32>) -> vec4<f32> */
/* fn sample[A : iu32](texture: texture_2d_array_filtered<f32, unfilterable>, sampler: sampler_filtered<non_filtering>, coords: vec2<f32>, array_index: A, level: level, @const offset: vec2<i32>) -> vec4<f32> */
/* fn sample(texture: texture_3d<f32>, sampler: sampler, coords: vec3<f32>, level: level) -> vec4<f32> */
/* fn sample[F : texture_filter](texture: texture_3d_filtered<f32, F>, sampler: sampler, coords: vec3<f32>, level: level) -> vec4<f32> */
/* fn sample[K : sampler_filter](texture: texture_3d<f32>, sampler: sampler_filtered<K>, coords: vec3<f32>, level: level) -> vec4<f32> */
/* fn sample[K : sampler_filter](texture: texture_3d_filtered<f32, filterable>, sampler: sampler_filtered<K>, coords: vec3<f32>, level: level) -> vec4<f32> */
/* fn sample(texture: texture_3d_filtered<f32, unfilterable>, sampler: sampler_filtered<non_filtering>, coords: vec3<f32>, level: level) -> vec4<f32> */
/* fn sample(texture: texture_3d<f32>, sampler: sampler, coords: vec3<f32>, level: level, @const offset: vec3<i32>) -> vec4<f32> */
/* fn sample[F : texture_filter](texture: texture_3d_filtered<f32, F>, sampler: sampler, coords: vec3<f32>, level: level, @const offset: vec3<i32>) -> vec4<f32> */
/* fn sample[K : sampler_filter](texture: texture_3d<f32>, sampler: sampler_filtered<K>, coords: vec3<f32>, level: level, @const offset: vec3<i32>) -> vec4<f32> */
/* fn sample[K : sampler_filter](texture: texture_3d_filtered<f32, filterable>, sampler: sampler_filtered<K>, coords: vec3<f32>, level: level, @const offset: vec3<i32>) -> vec4<f32> */
/* fn sample(texture: texture_3d_filtered<f32, unfilterable>, sampler: sampler_filtered<non_filtering>, coords: vec3<f32>, level: level, @const offset: vec3<i32>) -> vec4<f32> */
/* fn sample(texture: texture_cube<f32>, sampler: sampler, coords: vec3<f32>, level: level) -> vec4<f32> */
/* fn sample[F : texture_filter](texture: texture_cube_filtered<f32, F>, sampler: sampler, coords: vec3<f32>, level: level) -> vec4<f32> */
/* fn sample[K : sampler_filter](texture: texture_cube<f32>, sampler: sampler_filtered<K>, coords: vec3<f32>, level: level) -> vec4<f32> */
/* fn sample[K : sampler_filter](texture: texture_cube_filtered<f32, filterable>, sampler: sampler_filtered<K>, coords: vec3<f32>, level: level) -> vec4<f32> */
/* fn sample(texture: texture_cube_filtered<f32, unfilterable>, sampler: sampler_filtered<non_filtering>, coords: vec3<f32>, level: level) -> vec4<f32> */
/* fn sample[A : iu32](texture: texture_cube_array<f32>, sampler: sampler, coords: vec3<f32>, array_index: A, level: level) -> vec4<f32> */
/* fn sample[A : iu32, F : texture_filter](texture: texture_cube_array_filtered<f32, F>, sampler: sampler, coords: vec3<f32>, array_index: A, level: level) -> vec4<f32> */
/* fn sample[A : iu32, K : sampler_filter](texture: texture_cube_array<f32>, sampler: sampler_filtered<K>, coords: vec3<f32>, array_index: A, level: level) -> vec4<f32> */
/* fn sample[A : iu32, K : sampler_filter](texture: texture_cube_array_filtered<f32, filterable>, sampler: sampler_filtered<K>, coords: vec3<f32>, array_index: A, level: level) -> vec4<f32> */
/* fn sample[A : iu32](texture: texture_cube_array_filtered<f32, unfilterable>, sampler: sampler_filtered<non_filtering>, coords: vec3<f32>, array_index: A, level: level) -> vec4<f32> */
/* fn sample(texture: texture_depth_2d, sampler: sampler, coords: vec2<f32>, level: level) -> f32 */
/* fn sample(texture: texture_depth_2d, sampler: sampler, coords: vec2<f32>, level: level, @const offset: vec2<i32>) -> f32 */
/* fn sample[A : iu32](texture: texture_depth_2d_array, sampler: sampler, coords: vec2<f32>, array_index: A, level: level) -> f32 */
/* fn sample[A : iu32](texture: texture_depth_2d_array, sampler: sampler, coords: vec2<f32>, array_index: A, level: level, @const offset: vec2<i32>) -> f32 */
/* fn sample(texture: texture_depth_cube, sampler: sampler, coords: vec3<f32>, level: level) -> f32 */
/* fn sample[A : iu32](texture: texture_depth_cube_array, sampler: sampler, coords: vec3<f32>, array_index: A, level: level) -> f32 */
/* fn sample(texture: texture_2d<f32>, sampler: sampler, coords: vec2<f32>, bias: bias) -> vec4<f32> */
/* fn sample[F : texture_filter](texture: texture_2d_filtered<f32, F>, sampler: sampler, coords: vec2<f32>, bias: bias) -> vec4<f32> */
/* fn sample[K : sampler_filter](texture: texture_2d<f32>, sampler: sampler_filtered<K>, coords: vec2<f32>, bias: bias) -> vec4<f32> */
/* fn sample[K : sampler_filter](texture: texture_2d_filtered<f32, filterable>, sampler: sampler_filtered<K>, coords: vec2<f32>, bias: bias) -> vec4<f32> */
/* fn sample(texture: texture_2d_filtered<f32, unfilterable>, sampler: sampler_filtered<non_filtering>, coords: vec2<f32>, bias: bias) -> vec4<f32> */
/* fn sample(texture: texture_2d<f32>, sampler: sampler, coords: vec2<f32>, bias: bias, @const offset: vec2<i32>) -> vec4<f32> */
/* fn sample[F : texture_filter](texture: texture_2d_filtered<f32, F>, sampler: sampler, coords: vec2<f32>, bias: bias, @const offset: vec2<i32>) -> vec4<f32> */
/* fn sample[K : sampler_filter](texture: texture_2d<f32>, sampler: sampler_filtered<K>, coords: vec2<f32>, bias: bias, @const offset: vec2<i32>) -> vec4<f32> */
/* fn sample[K : sampler_filter](texture: texture_2d_filtered<f32, filterable>, sampler: sampler_filtered<K>, coords: vec2<f32>, bias: bias, @const offset: vec2<i32>) -> vec4<f32> */
/* fn sample(texture: texture_2d_filtered<f32, unfilterable>, sampler: sampler_filtered<non_filtering>, coords: vec2<f32>, bias: bias, @const offset: vec2<i32>) -> vec4<f32> */
/* fn sample[A : iu32](texture: texture_2d_array<f32>, sampler: sampler, coords: vec2<f32>, array_index: A, bias: bias) -> vec4<f32> */
/* fn sample[A : iu32, F : texture_filter](texture: texture_2d_array_filtered<f32, F>, sampler: sampler, coords: vec2<f32>, array_index: A, bias: bias) -> vec4<f32> */
/* fn sample[A : iu32, K : sampler_filter](texture: texture_2d_array<f32>, sampler: sampler_filtered<K>, coords: vec2<f32>, array_index: A, bias: bias) -> vec4<f32> */
/* fn sample[A : iu32, K : sampler_filter](texture: texture_2d_array_filtered<f32, filterable>, sampler: sampler_filtered<K>, coords: vec2<f32>, array_index: A, bias: bias) -> vec4<f32> */
/* fn sample[A : iu32](texture: texture_2d_array_filtered<f32, unfilterable>, sampler: sampler_filtered<non_filtering>, coords: vec2<f32>, array_index: A, bias: bias) -> vec4<f32> */
/* fn sample[A : iu32](texture: texture_2d_array<f32>, sampler: sampler, coords: vec2<f32>, array_index: A, bias: bias, @const offset: vec2<i32>) -> vec4<f32> */
/* fn sample[A : iu32, F : texture_filter](texture: texture_2d_array_filtered<f32, F>, sampler: sampler, coords: vec2<f32>, array_index: A, bias: bias, @const offset: vec2<i32>) -> vec4<f32> */
/* fn sample[A : iu32, K : sampler_filter](texture: texture_2d_array<f32>, sampler: sampler_filtered<K>, coords: vec2<f32>, array_index: A, bias: bias, @const offset: vec2<i32>) -> vec4<f32> */
/* fn sample[A : iu32, K : sampler_filter](texture: texture_2d_array_filtered<f32, filterable>, sampler: sampler_filtered<K>, coords: vec2<f32>, array_index: A, bias: bias, @const offset: vec2<i32>) -> vec4<f32> */
/* fn sample[A : iu32](texture: texture_2d_array_filtered<f32, unfilterable>, sampler: sampler_filtered<non_filtering>, coords: vec2<f32>, array_index: A, bias: bias, @const offset: vec2<i32>) -> vec4<f32> */
/* fn sample(texture: texture_3d<f32>, sampler: sampler, coords: vec3<f32>, bias: bias) -> vec4<f32> */
/* fn sample[F : texture_filter](texture: texture_3d_filtered<f32, F>, sampler: sampler, coords: vec3<f32>, bias: bias) -> vec4<f32> */
/* fn sample[K : sampler_filter](texture: texture_3d<f32>, sampler: sampler_filtered<K>, coords: vec3<f32>, bias: bias) -> vec4<f32> */
/* fn sample[K : sampler_filter](texture: texture_3d_filtered<f32, filterable>, sampler: sampler_filtered<K>, coords: vec3<f32>, bias: bias) -> vec4<f32> */
/* fn sample(texture: texture_3d_filtered<f32, unfilterable>, sampler: sampler_filtered<non_filtering>, coords: vec3<f32>, bias: bias) -> vec4<f32> */
/* fn sample(texture: texture_3d<f32>, sampler: sampler, coords: vec3<f32>, bias: bias, @const offset: vec3<i32>) -> vec4<f32> */
/* fn sample[F : texture_filter](texture: texture_3d_filtered<f32, F>, sampler: sampler, coords: vec3<f32>, bias: bias, @const offset: vec3<i32>) -> vec4<f32> */
/* fn sample[K : sampler_filter](texture: texture_3d<f32>, sampler: sampler_filtered<K>, coords: vec3<f32>, bias: bias, @const offset: vec3<i32>) -> vec4<f32> */
/* fn sample[K : sampler_filter](texture: texture_3d_filtered<f32, filterable>, sampler: sampler_filtered<K>, coords: vec3<f32>, bias: bias, @const offset: vec3<i32>) -> vec4<f32> */
/* fn sample(texture: texture_3d_filtered<f32, unfilterable>, sampler: sampler_filtered<non_filtering>, coords: vec3<f32>, bias: bias, @const offset: vec3<i32>) -> vec4<f32> */
/* fn sample(texture: texture_cube<f32>, sampler: sampler, coords: vec3<f32>, bias: bias) -> vec4<f32> */
/* fn sample[F : texture_filter](texture: texture_cube_filtered<f32, F>, sampler: sampler, coords: vec3<f32>, bias: bias) -> vec4<f32> */
/* fn sample[K : sampler_filter](texture: texture_cube<f32>, sampler: sampler_filtered<K>, coords: vec3<f32>, bias: bias) -> vec4<f32> */
/* fn sample[K : sampler_filter](texture: texture_cube_filtered<f32, filterable>, sampler: sampler_filtered<K>, coords: vec3<f32>, bias: bias) -> vec4<f32> */
/* fn sample(texture: texture_cube_filtered<f32, unfilterable>, sampler: sampler_filtered<non_filtering>, coords: vec3<f32>, bias: bias) -> vec4<f32> */
/* fn sample[A : iu32](texture: texture_cube_array<f32>, sampler: sampler, coords: vec3<f32>, array_index: A, bias: bias) -> vec4<f32> */
/* fn sample[A : iu32, F : texture_filter](texture: texture_cube_array_filtered<f32, F>, sampler: sampler, coords: vec3<f32>, array_index: A, bias: bias) -> vec4<f32> */
/* fn sample[A : iu32, K : sampler_filter](texture: texture_cube_array<f32>, sampler: sampler_filtered<K>, coords: vec3<f32>, array_index: A, bias: bias) -> vec4<f32> */
/* fn sample[A : iu32, K : sampler_filter](texture: texture_cube_array_filtered<f32, filterable>, sampler: sampler_filtered<K>, coords: vec3<f32>, array_index: A, bias: bias) -> vec4<f32> */
/* fn sample[A : iu32](texture: texture_cube_array_filtered<f32, unfilterable>, sampler: sampler_filtered<non_filtering>, coords: vec3<f32>, array_index: A, bias: bias) -> vec4<f32> */
/* fn sample(texture: texture_2d<f32>, sampler: sampler, coords: vec2<f32>, gradient2d) -> vec4<f32> */
/* fn sample[F : texture_filter](texture: texture_2d_filtered<f32, F>, sampler: sampler, coords: vec2<f32>, gradient2d) -> vec4<f32> */
/* fn sample[K : sampler_filter](texture: texture_2d<f32>, sampler: sampler_filtered<K>, coords: vec2<f32>, gradient2d) -> vec4<f32> */
/* fn sample[K : sampler_filter](texture: texture_2d_filtered<f32, filterable>, sampler: sampler_filtered<K>, coords: vec2<f32>, gradient2d) -> vec4<f32> */
/* fn sample(texture: texture_2d_filtered<f32, unfilterable>, sampler: sampler_filtered<non_filtering>, coords: vec2<f32>, gradient2d) -> vec4<f32> */
/* fn sample(texture: texture_2d<f32>, sampler: sampler, coords: vec2<f32>, gradient2d, @const offset: vec2<i32>) -> vec4<f32> */
/* fn sample[F : texture_filter](texture: texture_2d_filtered<f32, F>, sampler: sampler, coords: vec2<f32>, gradient2d, @const offset: vec2<i32>) -> vec4<f32> */
/* fn sample[K : sampler_filter](texture: texture_2d<f32>, sampler: sampler_filtered<K>, coords: vec2<f32>, gradient2d, @const offset: vec2<i32>) -> vec4<f32> */
/* fn sample[K : sampler_filter](texture: texture_2d_filtered<f32, filterable>, sampler: sampler_filtered<K>, coords: vec2<f32>, gradient2d, @const offset: vec2<i32>) -> vec4<f32> */
/* fn sample(texture: texture_2d_filtered<f32, unfilterable>, sampler: sampler_filtered<non_filtering>, coords: vec2<f32>, gradient2d, @const offset: vec2<i32>) -> vec4<f32> */
/* fn sample[A : iu32](texture: texture_2d_array<f32>, sampler: sampler, coords: vec2<f32>, array_index: A, gradient2d) -> vec4<f32> */
/* fn sample[A : iu32, F : texture_filter](texture: texture_2d_array_filtered<f32, F>, sampler: sampler, coords: vec2<f32>, array_index: A, gradient2d) -> vec4<f32> */
/* fn sample[A : iu32, K : sampler_filter](texture: texture_2d_array<f32>, sampler: sampler_filtered<K>, coords: vec2<f32>, array_index: A, gradient2d) -> vec4<f32> */
/* fn sample[A : iu32, K : sampler_filter](texture: texture_2d_array_filtered<f32, filterable>, sampler: sampler_filtered<K>, coords: vec2<f32>, array_index: A, gradient2d) -> vec4<f32> */
/* fn sample[A : iu32](texture: texture_2d_array_filtered<f32, unfilterable>, sampler: sampler_filtered<non_filtering>, coords: vec2<f32>, array_index: A, gradient2d) -> vec4<f32> */
/* fn sample[A : iu32](texture: texture_2d_array<f32>, sampler: sampler, coords: vec2<f32>, array_index: A, gradient2d, @const offset: vec2<i32>) -> vec4<f32> */
/* fn sample[A : iu32, F : texture_filter](texture: texture_2d_array_filtered<f32, F>, sampler: sampler, coords: vec2<f32>, array_index: A, gradient2d, @const offset: vec2<i32>) -> vec4<f32> */
/* fn sample[A : iu32, K : sampler_filter](texture: texture_2d_array<f32>, sampler: sampler_filtered<K>, coords: vec2<f32>, array_index: A, gradient2d, @const offset: vec2<i32>) -> vec4<f32> */
/* fn sample[A : iu32, K : sampler_filter](texture: texture_2d_array_filtered<f32, filterable>, sampler: sampler_filtered<K>, coords: vec2<f32>, array_index: A, gradient2d, @const offset: vec2<i32>) -> vec4<f32> */
/* fn sample[A : iu32](texture: texture_2d_array_filtered<f32, unfilterable>, sampler: sampler_filtered<non_filtering>, coords: vec2<f32>, array_index: A, gradient2d, @const offset: vec2<i32>) -> vec4<f32> */
/* fn sample(texture: texture_3d<f32>, sampler: sampler, coords: vec3<f32>, gradient3d) -> vec4<f32> */
/* fn sample[F : texture_filter](texture: texture_3d_filtered<f32, F>, sampler: sampler, coords: vec3<f32>, gradient3d) -> vec4<f32> */
/* fn sample[K : sampler_filter](texture: texture_3d<f32>, sampler: sampler_filtered<K>, coords: vec3<f32>, gradient3d) -> vec4<f32> */
/* fn sample[K : sampler_filter](texture: texture_3d_filtered<f32, filterable>, sampler: sampler_filtered<K>, coords: vec3<f32>, gradient3d) -> vec4<f32> */
/* fn sample(texture: texture_3d_filtered<f32, unfilterable>, sampler: sampler_filtered<non_filtering>, coords: vec3<f32>, gradient3d) -> vec4<f32> */
/* fn sample(texture: texture_3d<f32>, sampler: sampler, coords: vec3<f32>, gradient3d, @const offset: vec3<i32>) -> vec4<f32> */
/* fn sample[F : texture_filter](texture: texture_3d_filtered<f32, F>, sampler: sampler, coords: vec3<f32>, gradient3d, @const offset: vec3<i32>) -> vec4<f32> */
/* fn sample[K : sampler_filter](texture: texture_3d<f32>, sampler: sampler_filtered<K>, coords: vec3<f32>, gradient3d, @const offset: vec3<i32>) -> vec4<f32> */
/* fn sample[K : sampler_filter](texture: texture_3d_filtered<f32, filterable>, sampler: sampler_filtered<K>, coords: vec3<f32>, gradient3d, @const offset: vec3<i32>) -> vec4<f32> */
/* fn sample(texture: texture_3d_filtered<f32, unfilterable>, sampler: sampler_filtered<non_filtering>, coords: vec3<f32>, gradient3d, @const offset: vec3<i32>) -> vec4<f32> */
/* fn sample(texture: texture_cube<f32>, sampler: sampler, coords: vec3<f32>, gradientcube) -> vec4<f32> */
/* fn sample[F : texture_filter](texture: texture_cube_filtered<f32, F>, sampler: sampler, coords: vec3<f32>, gradientcube) -> vec4<f32> */
/* fn sample[K : sampler_filter](texture: texture_cube<f32>, sampler: sampler_filtered<K>, coords: vec3<f32>, gradientcube) -> vec4<f32> */
/* fn sample[K : sampler_filter](texture: texture_cube_filtered<f32, filterable>, sampler: sampler_filtered<K>, coords: vec3<f32>, gradientcube) -> vec4<f32> */
/* fn sample(texture: texture_cube_filtered<f32, unfilterable>, sampler: sampler_filtered<non_filtering>, coords: vec3<f32>, gradientcube) -> vec4<f32> */
/* fn sample[A : iu32](texture: texture_cube_array<f32>, sampler: sampler, coords: vec3<f32>, array_index: A, gradientcube) -> vec4<f32> */
/* fn sample[A : iu32, F : texture_filter](texture: texture_cube_array_filtered<f32, F>, sampler: sampler, coords: vec3<f32>, array_index: A, gradientcube) -> vec4<f32> */
/* fn sample[A : iu32, K : sampler_filter](texture: texture_cube_array<f32>, sampler: sampler_filtered<K>, coords: vec3<f32>, array_index: A, gradientcube) -> vec4<f32> */
/* fn sample[A : iu32, K : sampler_filter](texture: texture_cube_array_filtered<f32, filterable>, sampler: sampler_filtered<K>, coords: vec3<f32>, array_index: A, gradientcube) -> vec4<f32> */
/* fn sample[A : iu32](texture: texture_cube_array_filtered<f32, unfilterable>, sampler: sampler_filtered<non_filtering>, coords: vec3<f32>, array_index: A, gradientcube) -> vec4<f32> */
/* num overloads */ 177,
/* overloads */ OverloadIndex(0),
},
{
/* [24] */
/* fn sample_compare(texture: texture_depth_2d, sampler: sampler_comparison, coords: vec2<f32>, depth_ref: f32) -> f32 */
/* fn sample_compare(texture: texture_depth_2d, sampler: sampler_comparison, coords: vec2<f32>, depth_ref: f32, @const offset: vec2<i32>) -> f32 */
/* fn sample_compare[A : iu32](texture: texture_depth_2d_array, sampler: sampler_comparison, coords: vec2<f32>, array_index: A, depth_ref: f32) -> f32 */
/* fn sample_compare[A : iu32](texture: texture_depth_2d_array, sampler: sampler_comparison, coords: vec2<f32>, array_index: A, depth_ref: f32, @const offset: vec2<i32>) -> f32 */
/* fn sample_compare(texture: texture_depth_cube, sampler: sampler_comparison, coords: vec3<f32>, depth_ref: f32) -> f32 */
/* fn sample_compare[A : iu32](texture: texture_depth_cube_array, sampler: sampler_comparison, coords: vec3<f32>, array_index: A, depth_ref: f32) -> f32 */
/* fn sample_compare(texture: texture_depth_2d, sampler: sampler_comparison, coords: vec2<f32>, depth_ref: f32, level: level) -> f32 */
/* fn sample_compare(texture: texture_depth_2d, sampler: sampler_comparison, coords: vec2<f32>, depth_ref: f32, level: level, @const offset: vec2<i32>) -> f32 */
/* fn sample_compare[A : iu32](texture: texture_depth_2d_array, sampler: sampler_comparison, coords: vec2<f32>, array_index: A, depth_ref: f32, level: level) -> f32 */
/* fn sample_compare[A : iu32](texture: texture_depth_2d_array, sampler: sampler_comparison, coords: vec2<f32>, array_index: A, depth_ref: f32, level: level, @const offset: vec2<i32>) -> f32 */
/* fn sample_compare(texture: texture_depth_cube, sampler: sampler_comparison, coords: vec3<f32>, depth_ref: f32, level: level) -> f32 */
/* fn sample_compare[A : iu32](texture: texture_depth_cube_array, sampler: sampler_comparison, coords: vec3<f32>, array_index: A, depth_ref: f32, level: level) -> f32 */
/* num overloads */ 12,
/* overloads */ OverloadIndex(296),
},
{
/* [25] */
/* fn write(texture: texture_storage_1d<f32_texel_format, writable>, value: vec4<f32>, coords: u32) */
/* fn write(texture: texture_storage_2d<f32_texel_format, writable>, value: vec4<f32>, coords: vec2<u32>) */
/* fn write[A : iu32](texture: texture_storage_2d_array<f32_texel_format, writable>, value: vec4<f32>, coords: vec2<u32>, array_index: A) */
/* fn write(texture: texture_storage_3d<f32_texel_format, writable>, value: vec4<f32>, coords: vec3<u32>) */
/* fn write(texture: texture_storage_1d<i32_texel_format, writable>, value: vec4<i32>, coords: u32) */
/* fn write(texture: texture_storage_2d<i32_texel_format, writable>, value: vec4<i32>, coords: vec2<u32>) */
/* fn write[A : iu32](texture: texture_storage_2d_array<i32_texel_format, writable>, value: vec4<i32>, coords: vec2<u32>, array_index: A) */
/* fn write(texture: texture_storage_3d<i32_texel_format, writable>, value: vec4<i32>, coords: vec3<u32>) */
/* fn write(texture: texture_storage_1d<u32_texel_format, writable>, value: vec4<u32>, coords: u32) */
/* fn write(texture: texture_storage_2d<u32_texel_format, writable>, value: vec4<u32>, coords: vec2<u32>) */
/* fn write[A : iu32](texture: texture_storage_2d_array<u32_texel_format, writable>, value: vec4<u32>, coords: vec2<u32>, array_index: A) */
/* fn write(texture: texture_storage_3d<u32_texel_format, writable>, value: vec4<u32>, coords: vec3<u32>) */
/* num overloads */ 12,
/* overloads */ OverloadIndex(308),
},
{
/* [26] */
/* fn distance[N : num, T : f32_f16](vec<N, T>, vec<N, T>) -> T */
/* num overloads */ 1,
/* overloads */ OverloadIndex(363),
},
{
/* [27] */
/* fn dot[N : num, T : f32_f16](vec<N, T>, vec<N, T>) -> T */
/* num overloads */ 1,
/* overloads */ OverloadIndex(363),
},
{
/* [28] */
/* fn fmod[T : f32_f16](T, T) -> T */
/* fn fmod[N : num, T : f32_f16](vec<N, T>, vec<N, T>) -> vec<N, T> */
/* fn fmod[N : num, T : f32_f16](T, vec<N, T>) -> vec<N, T> */
/* fn fmod[N : num, T : f32_f16](vec<N, T>, T) -> vec<N, T> */
/* num overloads */ 4,
/* overloads */ OverloadIndex(343),
},
{
/* [29] */
/* fn frexp[T : f32_f16](T, i32) -> T */
/* fn frexp[N : num, T : f32_f16](vec<N, T>, vec<N, i32>) -> vec<N, T> */
/* num overloads */ 2,
/* overloads */ OverloadIndex(352),
},
{
/* [30] */
/* fn length[N : num, T : f32_f16](vec<N, T>) -> T */
/* num overloads */ 1,
/* overloads */ OverloadIndex(364),
},
{
/* [31] */
/* fn modf[T : f32_f16](T, T) -> T */
/* fn modf[N : num, T : f32_f16](vec<N, T>, vec<N, T>) -> vec<N, T> */
/* num overloads */ 2,
/* overloads */ OverloadIndex(343),
},
{
/* [32] */
/* fn sign[T : f32_f16](T) -> T */
/* fn sign[N : num, T : f32_f16](vec<N, T>) -> vec<N, T> */
/* num overloads */ 2,
/* overloads */ OverloadIndex(354),
},
{
/* [33] */
/* fn threadgroup_barrier(u32) */
/* num overloads */ 1,
/* overloads */ OverloadIndex(365),
},
{
/* [34] */
/* fn simd_ballot(bool) -> vec2<u32> */
/* num overloads */ 1,
/* overloads */ OverloadIndex(366),
},
{
/* [35] */
/* fn quad_shuffle_xor[T : fiu32_f16](T, u32) -> T */
/* fn quad_shuffle_xor[N : num, T : fiu32_f16](vec<N, T>, u32) -> vec<N, T> */
/* num overloads */ 2,
/* overloads */ OverloadIndex(356),
},
{
/* [36] */
/* fn convert(__packed_vec3<u32>) -> vec3<u32> */
/* fn convert(__packed_vec3<i32>) -> vec3<i32> */
/* fn convert(__packed_vec3<f32>) -> vec3<f32> */
/* fn convert(__packed_vec3<f16>) -> vec3<f16> */
/* fn convert(vec3<u32>) -> __packed_vec3<u32> */
/* fn convert(vec3<i32>) -> __packed_vec3<i32> */
/* fn convert(vec3<f32>) -> __packed_vec3<f32> */
/* fn convert(vec3<f16>) -> __packed_vec3<f16> */
/* fn convert(u32) -> u64 */
/* fn convert<T : subgroup_matrix<subgroup_matrix_kind_left, S, C, R>>[S : f32_f16, C : num, R : num](subgroup_matrix<subgroup_matrix_kind_left, S, C, R>) -> T */
/* fn convert<T : subgroup_matrix<subgroup_matrix_kind_result, S, C, R>>[S : f32_f16, C : num, R : num](subgroup_matrix<subgroup_matrix_kind_result, S, C, R>) -> T */
/* fn convert<T : subgroup_matrix<subgroup_matrix_kind_left, S, C, R>>[S : f32_f16, C : num, R : num](subgroup_matrix<subgroup_matrix_kind_right, S, C, R>) -> T */
/* fn convert<T : subgroup_matrix<subgroup_matrix_kind_left, S, C, R>>[S : f32_f16, C : num, R : num](subgroup_matrix<subgroup_matrix_kind_result, S, C, R>) -> T */
/* fn convert<T : subgroup_matrix<subgroup_matrix_kind_right, S, C, R>>[S : f32_f16, C : num, R : num](subgroup_matrix<subgroup_matrix_kind_result, S, C, R>) -> T */
/* num overloads */ 14,
/* overloads */ OverloadIndex(282),
},
{
/* [37] */
/* fn make_filled_simdgroup_matrix<T : subgroup_matrix<K, S, C, R>>[K : subgroup_matrix_kind, S : f32_f16, C : num, R : num](S) -> T */
/* num overloads */ 1,
/* overloads */ OverloadIndex(367),
},
{
/* [38] */
/* fn make_diagonal_simdgroup_matrix<T : subgroup_matrix<K, S, C, R>>[K : subgroup_matrix_kind, S : f32_f16, C : num, R : num](S) -> T */
/* num overloads */ 1,
/* overloads */ OverloadIndex(367),
},
{
/* [39] */
/* fn simdgroup_load[K : subgroup_matrix_kind, S : f32_f16, C : num, R : num](subgroup_matrix<K, S, C, R>, ptr<workgroup_or_storage, S, readable>, u64, vec2<u64>, bool) */
/* num overloads */ 1,
/* overloads */ OverloadIndex(368),
},
{
/* [40] */
/* fn simdgroup_store[K : subgroup_matrix_kind, S : f32_f16, C : num, R : num](subgroup_matrix<K, S, C, R>, ptr<workgroup_or_storage, S, writable>, u64, vec2<u64>, bool) */
/* num overloads */ 1,
/* overloads */ OverloadIndex(369),
},
{
/* [41] */
/* fn simdgroup_multiply[S : f32_f16, C : num, R : num, K : num](subgroup_matrix<subgroup_matrix_kind_result, S, C, R>, subgroup_matrix<subgroup_matrix_kind_left, S, K, R>, subgroup_matrix<subgroup_matrix_kind_right, S, C, K>) */
/* num overloads */ 1,
/* overloads */ OverloadIndex(370),
},
{
/* [42] */
/* fn simdgroup_multiply_accumulate[S : f32_f16, C : num, R : num, K : num](subgroup_matrix<subgroup_matrix_kind_result, S, C, R>, subgroup_matrix<subgroup_matrix_kind_left, S, K, R>, subgroup_matrix<subgroup_matrix_kind_right, S, C, K>, subgroup_matrix<subgroup_matrix_kind_result, S, C, R>) */
/* num overloads */ 1,
/* overloads */ OverloadIndex(371),
},
{
/* [43] */
/* fn os_log[T : scalar](string, u32, u32, u32, T) */
/* fn os_log[N : num, T : scalar](string, u32, u32, u32, vec<N, T>) */
/* fn os_log[T : scalar](string, f32, f32, f32, T) */
/* fn os_log[N : num, T : scalar](string, f32, f32, f32, vec<N, T>) */
/* fn os_log[T : scalar](string, u32, u32, T) */
/* fn os_log[N : num, T : scalar](string, u32, u32, vec<N, T>) */
/* num overloads */ 6,
/* overloads */ OverloadIndex(333),
},
{
/* [44] */
/* fn pointer_offset[T, S : address_space, A : access](ptr<S, T, A>, u32) -> ptr<S, T, A> */
/* num overloads */ 1,
/* overloads */ OverloadIndex(372),
},
};
} // 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 */ {},
/* ctor_conv */ {},
/* 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::msl::intrinsic
// clang-format on