blob: 71a4a0bd73955e13460d5c85b33b2e562d92cedc [file] [log] [blame]
fn all_f46790() {
var res : bool = all(vec2<bool>(true));
}
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
all_f46790();
return vec4<f32>();
}
@fragment
fn fragment_main() {
all_f46790();
}
@compute @workgroup_size(1)
fn compute_main() {
all_f46790();
}