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