blob: 5199ffcf1b59fb659d324c7a3c7fd2a2143eb0a3 [file] [log] [blame]
enable f16;
fn step_baa320() {
var res : vec4<f16> = step(vec4<f16>(1.0h), vec4<f16>(1.0h));
}
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
step_baa320();
return vec4<f32>();
}
@fragment
fn fragment_main() {
step_baa320();
}
@compute @workgroup_size(1)
fn compute_main() {
step_baa320();
}