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