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