blob: c1c0a658689308580f6196dceb78dcf2017e6076 [file] [log] [blame]
fn asin_7b6a44() {
var res : vec2<f32> = asin(vec2<f32>(1.0f));
}
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
asin_7b6a44();
return vec4<f32>();
}
@fragment
fn fragment_main() {
asin_7b6a44();
}
@compute @workgroup_size(1)
fn compute_main() {
asin_7b6a44();
}