blob: c20ebc18523dacc8b5b434448049242cc7c117f7 [file] [log] [blame]
fn min_0dc614() {
var res : vec4<u32> = min(vec4<u32>(), vec4<u32>());
}
[[stage(vertex)]]
fn vertex_main() -> [[builtin(position)]] vec4<f32> {
min_0dc614();
return vec4<f32>();
}
[[stage(fragment)]]
fn fragment_main() {
min_0dc614();
}
[[stage(compute)]]
fn compute_main() {
min_0dc614();
}