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