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