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