blob: 04131b7c63d65f588001f8ec353f0028de1b6ccf [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), workgroup_size(1)]]
fn compute_main() {
asin_8cd9c9();
}