blob: 0af41411e1ea53f4d4bcf70337cf472c183c30a2 [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) @workgroup_size(1)
fn compute_main() {
abs_467cd1();
}