2021-11-23 18:57:57 +00:00
|
|
|
intrinsics/gen/isNormal/863dcd.wgsl:28:25 warning: use of deprecated intrinsic
|
|
|
|
var res: vec4<bool> = isNormal(vec4<f32>());
|
|
|
|
^^^^^^^^
|
|
|
|
|
2021-06-03 11:26:17 +00:00
|
|
|
fn isNormal_863dcd() {
|
|
|
|
var res : vec4<bool> = isNormal(vec4<f32>());
|
|
|
|
}
|
|
|
|
|
2022-01-19 22:46:57 +00:00
|
|
|
@stage(vertex)
|
|
|
|
fn vertex_main() -> @builtin(position) vec4<f32> {
|
2021-06-03 11:26:17 +00:00
|
|
|
isNormal_863dcd();
|
2021-06-04 17:31:48 +00:00
|
|
|
return vec4<f32>();
|
2021-06-03 11:26:17 +00:00
|
|
|
}
|
|
|
|
|
2022-01-19 22:46:57 +00:00
|
|
|
@stage(fragment)
|
2021-06-03 11:26:17 +00:00
|
|
|
fn fragment_main() {
|
|
|
|
isNormal_863dcd();
|
|
|
|
}
|
|
|
|
|
2022-01-19 22:46:57 +00:00
|
|
|
@stage(compute) @workgroup_size(1)
|
2021-06-03 11:26:17 +00:00
|
|
|
fn compute_main() {
|
|
|
|
isNormal_863dcd();
|
|
|
|
}
|