blob: c316c5049eee0d508208d87464947e5f5e311fb3 [file] [log] [blame]
fn abs_467cd1() {
var res : u32 = abs(1u);
}
[[stage(vertex)]]
fn vertex_main() -> [[builtin(position)]] vec4<f32> {
abs_467cd1();
return vec4<f32>();
}
[[stage(fragment)]]
fn fragment_main() {
abs_467cd1();
}
[[stage(compute)]]
fn compute_main() {
abs_467cd1();
}