blob: 70fa7d73f5cc609331ffee5cda22795f6d527152 [file] [log] [blame]
enable f16;
fn saturate_cd2028() {
var arg_0 = vec2<f16>(f16());
var res : vec2<f16> = saturate(arg_0);
}
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
saturate_cd2028();
return vec4<f32>();
}
@fragment
fn fragment_main() {
saturate_cd2028();
}
@compute @workgroup_size(1)
fn compute_main() {
saturate_cd2028();
}