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