blob: 13a6134da0e472f13d7452a4230f43554c9671f3 [file] [log] [blame]
enable f16;
fn tan_db0456() {
var res : vec3<f16> = tan(vec3<f16>(1.0h));
}
@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();
}