blob: 99cc88524d34fd88e0bb04f22a9577f7aea155dd [file] [log] [blame]
fn asin_8cd9c9() {
var res : vec3<f32> = asin(vec3<f32>());
}
[[stage(vertex)]]
fn vertex_main() -> [[builtin(position)]] vec4<f32> {
asin_8cd9c9();
return vec4<f32>();
}
[[stage(fragment)]]
fn fragment_main() {
asin_8cd9c9();
}
[[stage(compute)]]
fn compute_main() {
asin_8cd9c9();
}