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