test/intrinsics: Include overload signature in test case
Change-Id: I7ebd87ea3c63531dd75bf611ab9b3194e74326cd Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/54654 Kokoro: Kokoro <noreply+kokoro@google.com> Reviewed-by: David Neto <dneto@google.com> Commit-Queue: Ben Clayton <bclayton@google.com>
This commit is contained in:
parent
313e6184e6
commit
9ab63ae600
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn abs(vec<4, f32>) -> vec<4, f32>
|
||||
fn abs_002533() {
|
||||
var res: vec4<f32> = abs(vec4<f32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn abs(vec<3, f32>) -> vec<3, f32>
|
||||
fn abs_005174() {
|
||||
var res: vec3<f32> = abs(vec3<f32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn abs(vec<4, u32>) -> vec<4, u32>
|
||||
fn abs_1ce782() {
|
||||
var res: vec4<u32> = abs(vec4<u32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn abs(vec<2, f32>) -> vec<2, f32>
|
||||
fn abs_1e9d53() {
|
||||
var res: vec2<f32> = abs(vec2<f32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn abs(u32) -> u32
|
||||
fn abs_467cd1() {
|
||||
var res: u32 = abs(1u);
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn abs(i32) -> i32
|
||||
fn abs_4ad288() {
|
||||
var res: i32 = abs(1);
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn abs(vec<3, i32>) -> vec<3, i32>
|
||||
fn abs_5ad50a() {
|
||||
var res: vec3<i32> = abs(vec3<i32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn abs(vec<3, u32>) -> vec<3, u32>
|
||||
fn abs_7326de() {
|
||||
var res: vec3<u32> = abs(vec3<u32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn abs(vec<2, u32>) -> vec<2, u32>
|
||||
fn abs_7f28e6() {
|
||||
var res: vec2<u32> = abs(vec2<u32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn abs(vec<2, i32>) -> vec<2, i32>
|
||||
fn abs_7faa9e() {
|
||||
var res: vec2<i32> = abs(vec2<i32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn abs(vec<4, i32>) -> vec<4, i32>
|
||||
fn abs_9c80a6() {
|
||||
var res: vec4<i32> = abs(vec4<i32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn abs(f32) -> f32
|
||||
fn abs_b96037() {
|
||||
var res: f32 = abs(1.0);
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn acos(f32) -> f32
|
||||
fn acos_489247() {
|
||||
var res: f32 = acos(1.0);
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn acos(vec<4, f32>) -> vec<4, f32>
|
||||
fn acos_8e2acf() {
|
||||
var res: vec4<f32> = acos(vec4<f32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn acos(vec<3, f32>) -> vec<3, f32>
|
||||
fn acos_a610c4() {
|
||||
var res: vec3<f32> = acos(vec3<f32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn acos(vec<2, f32>) -> vec<2, f32>
|
||||
fn acos_dfc915() {
|
||||
var res: vec2<f32> = acos(vec2<f32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn all(vec<4, bool>) -> bool
|
||||
fn all_986c7b() {
|
||||
var res: bool = all(vec4<bool>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn all(vec<3, bool>) -> bool
|
||||
fn all_bd2dba() {
|
||||
var res: bool = all(vec3<bool>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn all(vec<2, bool>) -> bool
|
||||
fn all_f46790() {
|
||||
var res: bool = all(vec2<bool>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn any(vec<4, bool>) -> bool
|
||||
fn any_083428() {
|
||||
var res: bool = any(vec4<bool>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn any(vec<2, bool>) -> bool
|
||||
fn any_0e3e58() {
|
||||
var res: bool = any(vec2<bool>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn any(vec<3, bool>) -> bool
|
||||
fn any_e755c1() {
|
||||
var res: bool = any(vec3<bool>());
|
||||
}
|
||||
|
|
|
@ -27,6 +27,8 @@ struct SB {
|
|||
arg_0: array<u32>;
|
||||
};
|
||||
[[group(0), binding(0)]] var<storage, read> sb : SB;
|
||||
|
||||
// fn arrayLength(array<u32>) -> u32
|
||||
fn arrayLength_647a40() {
|
||||
var res: u32 = arrayLength(sb.arg_0);
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
intrinsics/gen/arrayLength/647a40.wgsl:31:18 warning: use of deprecated intrinsic
|
||||
intrinsics/gen/arrayLength/647a40.wgsl:33:18 warning: use of deprecated intrinsic
|
||||
var res: u32 = arrayLength(sb.arg_0);
|
||||
^^^^^^^^^^^
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
intrinsics/gen/arrayLength/647a40.wgsl:31:18 warning: use of deprecated intrinsic
|
||||
intrinsics/gen/arrayLength/647a40.wgsl:33:18 warning: use of deprecated intrinsic
|
||||
var res: u32 = arrayLength(sb.arg_0);
|
||||
^^^^^^^^^^^
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
intrinsics/gen/arrayLength/647a40.wgsl:31:18 warning: use of deprecated intrinsic
|
||||
intrinsics/gen/arrayLength/647a40.wgsl:33:18 warning: use of deprecated intrinsic
|
||||
var res: u32 = arrayLength(sb.arg_0);
|
||||
^^^^^^^^^^^
|
||||
|
||||
|
|
|
@ -27,6 +27,8 @@ struct SB {
|
|||
arg_0: array<i32>;
|
||||
};
|
||||
[[group(0), binding(0)]] var<storage, read> sb : SB;
|
||||
|
||||
// fn arrayLength(array<i32>) -> u32
|
||||
fn arrayLength_721c9d() {
|
||||
var res: u32 = arrayLength(sb.arg_0);
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
intrinsics/gen/arrayLength/721c9d.wgsl:31:18 warning: use of deprecated intrinsic
|
||||
intrinsics/gen/arrayLength/721c9d.wgsl:33:18 warning: use of deprecated intrinsic
|
||||
var res: u32 = arrayLength(sb.arg_0);
|
||||
^^^^^^^^^^^
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
intrinsics/gen/arrayLength/721c9d.wgsl:31:18 warning: use of deprecated intrinsic
|
||||
intrinsics/gen/arrayLength/721c9d.wgsl:33:18 warning: use of deprecated intrinsic
|
||||
var res: u32 = arrayLength(sb.arg_0);
|
||||
^^^^^^^^^^^
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
intrinsics/gen/arrayLength/721c9d.wgsl:31:18 warning: use of deprecated intrinsic
|
||||
intrinsics/gen/arrayLength/721c9d.wgsl:33:18 warning: use of deprecated intrinsic
|
||||
var res: u32 = arrayLength(sb.arg_0);
|
||||
^^^^^^^^^^^
|
||||
|
||||
|
|
|
@ -27,6 +27,8 @@ struct SB {
|
|||
arg_0: array<f32>;
|
||||
};
|
||||
[[group(0), binding(0)]] var<storage, read> sb : SB;
|
||||
|
||||
// fn arrayLength(array<f32>) -> u32
|
||||
fn arrayLength_b083be() {
|
||||
var res: u32 = arrayLength(sb.arg_0);
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
intrinsics/gen/arrayLength/b083be.wgsl:31:18 warning: use of deprecated intrinsic
|
||||
intrinsics/gen/arrayLength/b083be.wgsl:33:18 warning: use of deprecated intrinsic
|
||||
var res: u32 = arrayLength(sb.arg_0);
|
||||
^^^^^^^^^^^
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
intrinsics/gen/arrayLength/b083be.wgsl:31:18 warning: use of deprecated intrinsic
|
||||
intrinsics/gen/arrayLength/b083be.wgsl:33:18 warning: use of deprecated intrinsic
|
||||
var res: u32 = arrayLength(sb.arg_0);
|
||||
^^^^^^^^^^^
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
intrinsics/gen/arrayLength/b083be.wgsl:31:18 warning: use of deprecated intrinsic
|
||||
intrinsics/gen/arrayLength/b083be.wgsl:33:18 warning: use of deprecated intrinsic
|
||||
var res: u32 = arrayLength(sb.arg_0);
|
||||
^^^^^^^^^^^
|
||||
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn asin(vec<4, f32>) -> vec<4, f32>
|
||||
fn asin_064953() {
|
||||
var res: vec4<f32> = asin(vec4<f32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn asin(vec<2, f32>) -> vec<2, f32>
|
||||
fn asin_7b6a44() {
|
||||
var res: vec2<f32> = asin(vec2<f32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn asin(vec<3, f32>) -> vec<3, f32>
|
||||
fn asin_8cd9c9() {
|
||||
var res: vec3<f32> = asin(vec3<f32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn asin(f32) -> f32
|
||||
fn asin_c0c272() {
|
||||
var res: f32 = asin(1.0);
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn atan(f32) -> f32
|
||||
fn atan_02979a() {
|
||||
var res: f32 = atan(1.0);
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn atan(vec<3, f32>) -> vec<3, f32>
|
||||
fn atan_331e6d() {
|
||||
var res: vec3<f32> = atan(vec3<f32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn atan(vec<4, f32>) -> vec<4, f32>
|
||||
fn atan_a8b696() {
|
||||
var res: vec4<f32> = atan(vec4<f32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn atan(vec<2, f32>) -> vec<2, f32>
|
||||
fn atan_ad96e4() {
|
||||
var res: vec2<f32> = atan(vec2<f32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn atan2(vec<2, f32>, vec<2, f32>) -> vec<2, f32>
|
||||
fn atan2_57fb13() {
|
||||
var res: vec2<f32> = atan2(vec2<f32>(), vec2<f32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn atan2(f32, f32) -> f32
|
||||
fn atan2_96057c() {
|
||||
var res: f32 = atan2(1.0, 1.0);
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn atan2(vec<3, f32>, vec<3, f32>) -> vec<3, f32>
|
||||
fn atan2_a70d0d() {
|
||||
var res: vec3<f32> = atan2(vec3<f32>(), vec3<f32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn atan2(vec<4, f32>, vec<4, f32>) -> vec<4, f32>
|
||||
fn atan2_ae713e() {
|
||||
var res: vec4<f32> = atan2(vec4<f32>(), vec4<f32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn ceil(vec<3, f32>) -> vec<3, f32>
|
||||
fn ceil_34064b() {
|
||||
var res: vec3<f32> = ceil(vec3<f32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn ceil(f32) -> f32
|
||||
fn ceil_678655() {
|
||||
var res: f32 = ceil(1.0);
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn ceil(vec<2, f32>) -> vec<2, f32>
|
||||
fn ceil_96f597() {
|
||||
var res: vec2<f32> = ceil(vec2<f32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn ceil(vec<4, f32>) -> vec<4, f32>
|
||||
fn ceil_b74c16() {
|
||||
var res: vec4<f32> = ceil(vec4<f32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn clamp(vec<2, f32>, vec<2, f32>, vec<2, f32>) -> vec<2, f32>
|
||||
fn clamp_0acf8f() {
|
||||
var res: vec2<f32> = clamp(vec2<f32>(), vec2<f32>(), vec2<f32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn clamp(vec<4, i32>, vec<4, i32>, vec<4, i32>) -> vec<4, i32>
|
||||
fn clamp_1a32e3() {
|
||||
var res: vec4<i32> = clamp(vec4<i32>(), vec4<i32>(), vec4<i32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn clamp(f32, f32, f32) -> f32
|
||||
fn clamp_2bd567() {
|
||||
var res: f32 = clamp(1.0, 1.0, 1.0);
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn clamp(vec<4, f32>, vec<4, f32>, vec<4, f32>) -> vec<4, f32>
|
||||
fn clamp_2bde41() {
|
||||
var res: vec4<f32> = clamp(vec4<f32>(), vec4<f32>(), vec4<f32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn clamp(vec<3, u32>, vec<3, u32>, vec<3, u32>) -> vec<3, u32>
|
||||
fn clamp_548fc7() {
|
||||
var res: vec3<u32> = clamp(vec3<u32>(), vec3<u32>(), vec3<u32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn clamp(vec<3, i32>, vec<3, i32>, vec<3, i32>) -> vec<3, i32>
|
||||
fn clamp_5f0819() {
|
||||
var res: vec3<i32> = clamp(vec3<i32>(), vec3<i32>(), vec3<i32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn clamp(vec<2, i32>, vec<2, i32>, vec<2, i32>) -> vec<2, i32>
|
||||
fn clamp_6c1749() {
|
||||
var res: vec2<i32> = clamp(vec2<i32>(), vec2<i32>(), vec2<i32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn clamp(vec<2, u32>, vec<2, u32>, vec<2, u32>) -> vec<2, u32>
|
||||
fn clamp_7706d7() {
|
||||
var res: vec2<u32> = clamp(vec2<u32>(), vec2<u32>(), vec2<u32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn clamp(vec<3, f32>, vec<3, f32>, vec<3, f32>) -> vec<3, f32>
|
||||
fn clamp_867397() {
|
||||
var res: vec3<f32> = clamp(vec3<f32>(), vec3<f32>(), vec3<f32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn clamp(u32, u32, u32) -> u32
|
||||
fn clamp_a2de25() {
|
||||
var res: u32 = clamp(1u, 1u, 1u);
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn clamp(i32, i32, i32) -> i32
|
||||
fn clamp_b07c65() {
|
||||
var res: i32 = clamp(1, 1, 1);
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn clamp(vec<4, u32>, vec<4, u32>, vec<4, u32>) -> vec<4, u32>
|
||||
fn clamp_bd43ce() {
|
||||
var res: vec4<u32> = clamp(vec4<u32>(), vec4<u32>(), vec4<u32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn cos(vec<3, f32>) -> vec<3, f32>
|
||||
fn cos_16dc15() {
|
||||
var res: vec3<f32> = cos(vec3<f32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn cos(vec<4, f32>) -> vec<4, f32>
|
||||
fn cos_29d66d() {
|
||||
var res: vec4<f32> = cos(vec4<f32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn cos(vec<2, f32>) -> vec<2, f32>
|
||||
fn cos_c3b486() {
|
||||
var res: vec2<f32> = cos(vec2<f32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn cos(f32) -> f32
|
||||
fn cos_c5c28e() {
|
||||
var res: f32 = cos(1.0);
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn cosh(vec<3, f32>) -> vec<3, f32>
|
||||
fn cosh_377652() {
|
||||
var res: vec3<f32> = cosh(vec3<f32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn cosh(vec<2, f32>) -> vec<2, f32>
|
||||
fn cosh_c13756() {
|
||||
var res: vec2<f32> = cosh(vec2<f32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn cosh(f32) -> f32
|
||||
fn cosh_da92dd() {
|
||||
var res: f32 = cosh(1.0);
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn cosh(vec<4, f32>) -> vec<4, f32>
|
||||
fn cosh_e0c1de() {
|
||||
var res: vec4<f32> = cosh(vec4<f32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn countOneBits(vec<4, u32>) -> vec<4, u32>
|
||||
fn countOneBits_0d0e46() {
|
||||
var res: vec4<u32> = countOneBits(vec4<u32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn countOneBits(vec<4, i32>) -> vec<4, i32>
|
||||
fn countOneBits_0f7980() {
|
||||
var res: vec4<i32> = countOneBits(vec4<i32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn countOneBits(vec<3, i32>) -> vec<3, i32>
|
||||
fn countOneBits_65d2ae() {
|
||||
var res: vec3<i32> = countOneBits(vec3<i32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn countOneBits(vec<3, u32>) -> vec<3, u32>
|
||||
fn countOneBits_690cfc() {
|
||||
var res: vec3<u32> = countOneBits(vec3<u32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn countOneBits(vec<2, u32>) -> vec<2, u32>
|
||||
fn countOneBits_94fd81() {
|
||||
var res: vec2<u32> = countOneBits(vec2<u32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn countOneBits(u32) -> u32
|
||||
fn countOneBits_ae44f9() {
|
||||
var res: u32 = countOneBits(1u);
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn countOneBits(vec<2, i32>) -> vec<2, i32>
|
||||
fn countOneBits_af90e2() {
|
||||
var res: vec2<i32> = countOneBits(vec2<i32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn countOneBits(i32) -> i32
|
||||
fn countOneBits_fd88b2() {
|
||||
var res: i32 = countOneBits(1);
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn cross(vec3<f32>, vec3<f32>) -> vec3<f32>
|
||||
fn cross_041cb0() {
|
||||
var res: vec3<f32> = cross(vec3<f32>(), vec3<f32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn determinant(mat<3, 3, f32>) -> f32
|
||||
fn determinant_2b62ba() {
|
||||
var res: f32 = determinant(mat3x3<f32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn determinant(mat<4, 4, f32>) -> f32
|
||||
fn determinant_a0a87c() {
|
||||
var res: f32 = determinant(mat4x4<f32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn determinant(mat<2, 2, f32>) -> f32
|
||||
fn determinant_e19305() {
|
||||
var res: f32 = determinant(mat2x2<f32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn distance(vec<3, f32>, vec<3, f32>) -> f32
|
||||
fn distance_0657d4() {
|
||||
var res: f32 = distance(vec3<f32>(), vec3<f32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn distance(vec<4, f32>, vec<4, f32>) -> f32
|
||||
fn distance_9646ea() {
|
||||
var res: f32 = distance(vec4<f32>(), vec4<f32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn distance(vec<2, f32>, vec<2, f32>) -> f32
|
||||
fn distance_aa4055() {
|
||||
var res: f32 = distance(vec2<f32>(), vec2<f32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn distance(f32, f32) -> f32
|
||||
fn distance_cfed73() {
|
||||
var res: f32 = distance(1.0, 1.0);
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn dot(vec<4, f32>, vec<4, f32>) -> f32
|
||||
fn dot_0c577b() {
|
||||
var res: f32 = dot(vec4<f32>(), vec4<f32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn dot(vec<2, f32>, vec<2, f32>) -> f32
|
||||
fn dot_883f0e() {
|
||||
var res: f32 = dot(vec2<f32>(), vec2<f32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn dot(vec<3, f32>, vec<3, f32>) -> f32
|
||||
fn dot_ba4246() {
|
||||
var res: f32 = dot(vec3<f32>(), vec3<f32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn dpdx(vec<3, f32>) -> vec<3, f32>
|
||||
fn dpdx_0763f7() {
|
||||
var res: vec3<f32> = dpdx(vec3<f32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn dpdx(vec<2, f32>) -> vec<2, f32>
|
||||
fn dpdx_99edb1() {
|
||||
var res: vec2<f32> = dpdx(vec2<f32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn dpdx(vec<4, f32>) -> vec<4, f32>
|
||||
fn dpdx_c487fa() {
|
||||
var res: vec4<f32> = dpdx(vec4<f32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn dpdx(f32) -> f32
|
||||
fn dpdx_e263de() {
|
||||
var res: f32 = dpdx(1.0);
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn dpdxCoarse(f32) -> f32
|
||||
fn dpdxCoarse_029152() {
|
||||
var res: f32 = dpdxCoarse(1.0);
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn dpdxCoarse(vec<2, f32>) -> vec<2, f32>
|
||||
fn dpdxCoarse_9581cf() {
|
||||
var res: vec2<f32> = dpdxCoarse(vec2<f32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn dpdxCoarse(vec<4, f32>) -> vec<4, f32>
|
||||
fn dpdxCoarse_c28641() {
|
||||
var res: vec4<f32> = dpdxCoarse(vec4<f32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn dpdxCoarse(vec<3, f32>) -> vec<3, f32>
|
||||
fn dpdxCoarse_f64d7b() {
|
||||
var res: vec3<f32> = dpdxCoarse(vec3<f32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn dpdxFine(vec<4, f32>) -> vec<4, f32>
|
||||
fn dpdxFine_8c5069() {
|
||||
var res: vec4<f32> = dpdxFine(vec4<f32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn dpdxFine(vec<2, f32>) -> vec<2, f32>
|
||||
fn dpdxFine_9631de() {
|
||||
var res: vec2<f32> = dpdxFine(vec2<f32>());
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
// Do not modify this file directly
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
// fn dpdxFine(f32) -> f32
|
||||
fn dpdxFine_f401a2() {
|
||||
var res: f32 = dpdxFine(1.0);
|
||||
}
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue