blob: 8f0872c92a28e703991daf0f87ccdac49de8f19c [file] [log] [blame]
fn round_184d5a() {
var res = round(vec4(3.4));
}
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
round_184d5a();
return vec4<f32>();
}
@fragment
fn fragment_main() {
round_184d5a();
}
@compute @workgroup_size(1)
fn compute_main() {
round_184d5a();
}