blob: 3732bd7a1e7fca0c18fc10ab854cde10483fd6db [file] [log] [blame]
enable f16;
fn round_d87e84() {
var arg_0 = vec2<f16>(3.3984375h);
var res : vec2<f16> = round(arg_0);
}
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
round_d87e84();
return vec4<f32>();
}
@fragment
fn fragment_main() {
round_d87e84();
}
@compute @workgroup_size(1)
fn compute_main() {
round_d87e84();
}