blob: 29a290c68d4c229d5bf801a07cb6e72f8223d95d [file] [log] [blame]
enable f16;
fn atan2_d983ab() {
var res : vec4<f16> = atan2(vec4<f16>(1.0h), vec4<f16>(1.0h));
}
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
atan2_d983ab();
return vec4<f32>();
}
@fragment
fn fragment_main() {
atan2_d983ab();
}
@compute @workgroup_size(1)
fn compute_main() {
atan2_d983ab();
}