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