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