blob: c83f79dfe60b93239f4dbcbe6e5f78eadb9f3a20 [file] [log] [blame]
intrinsics/gen/isNan/67ecd3.wgsl:28:25 warning: use of deprecated intrinsic
var res: vec2<bool> = isNan(vec2<f32>());
^^^^^
void isNan_67ecd3() {
bool2 res = isnan(float2(0.0f, 0.0f));
}
struct tint_symbol {
float4 value : SV_Position;
};
float4 vertex_main_inner() {
isNan_67ecd3();
return float4(0.0f, 0.0f, 0.0f, 0.0f);
}
tint_symbol vertex_main() {
const float4 inner_result = vertex_main_inner();
tint_symbol wrapper_result = (tint_symbol)0;
wrapper_result.value = inner_result;
return wrapper_result;
}
void fragment_main() {
isNan_67ecd3();
return;
}
[numthreads(1, 1, 1)]
void compute_main() {
isNan_67ecd3();
return;
}