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