blob: 338cddf2d9c5e082b4ecadc8455937558db257a3 [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) @workgroup_size(1)
fn compute_main() {
round_106c0b();
}