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