blob: 933845397607a6310ce20c9b438e8d0c3eca1595 [file] [log] [blame]
enable f16;
fn round_f665b5() {
var res : vec4<f16> = round(vec4<f16>(f16()));
}
@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();
}