blob: 888becfa56b0d05ed010d4dab349adcf1a156ce2 [file] [log] [blame]
fn cos_c3b486() {
var res : vec2<f32> = cos(vec2<f32>());
}
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
cos_c3b486();
return vec4<f32>();
}
@fragment
fn fragment_main() {
cos_c3b486();
}
@compute @workgroup_size(1)
fn compute_main() {
cos_c3b486();
}