blob: 8058515758b19462e2f066941c43c6e632e76f4a [file] [log] [blame]
fn max_a93419() {
var res : vec4<f32> = max(vec4<f32>(), vec4<f32>());
}
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
max_a93419();
return vec4<f32>();
}
@fragment
fn fragment_main() {
max_a93419();
}
@compute @workgroup_size(1)
fn compute_main() {
max_a93419();
}