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