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