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