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