blob: 49035a210f137119c31f6cc3bb3adc97d5bb1a39 [file] [log] [blame]
enable f16;
fn cos_fc047d() {
var res : f16 = cos(0.0h);
}
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
cos_fc047d();
return vec4<f32>();
}
@fragment
fn fragment_main() {
cos_fc047d();
}
@compute @workgroup_size(1)
fn compute_main() {
cos_fc047d();
}