blob: 3bf5ae72fb3c2e3f331c90e202fed1b2210237c2 [file] [log] [blame]
fn max_a93419() {
var res : vec4<f32> = max(vec4<f32>(1.0f), vec4<f32>(1.0f));
}
@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();
}