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