blob: 64094ac799cb7cf64c06bdf6bc277ac0623bb643 [file] [log] [blame]
enable f16;
fn round_d87e84() {
var res : vec2<f16> = round(vec2<f16>(3.3984375h));
}
@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();
}