blob: 891c5e3e7aa6bb4a7f78408b34fe1471d2fa8d4c [file] [log] [blame]
enable f16;
fn atan_a7ba61() {
var res : f16 = atan(f16());
}
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
atan_a7ba61();
return vec4<f32>();
}
@fragment
fn fragment_main() {
atan_a7ba61();
}
@compute @workgroup_size(1)
fn compute_main() {
atan_a7ba61();
}