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