blob: 5d89ce6c48621d412d9cf955f15edf8a3f8791a5 [file] [log] [blame]
fn round_52c84d() {
var res : vec2<f32> = round(vec2<f32>());
}
[[stage(vertex)]]
fn vertex_main() -> [[builtin(position)]] vec4<f32> {
round_52c84d();
return vec4<f32>();
}
[[stage(fragment)]]
fn fragment_main() {
round_52c84d();
}
[[stage(compute), workgroup_size(1)]]
fn compute_main() {
round_52c84d();
}