blob: 1e245c114a6bda5b6b775d252e7f1e6c472e4b3a [file] [log] [blame]
fn select_b93806() {
var res = select(vec3(1), vec3(1), vec3<bool>(true));
}
@fragment
fn fragment_main() {
select_b93806();
}
@compute @workgroup_size(1)
fn compute_main() {
select_b93806();
}
struct VertexOutput {
@builtin(position)
pos : vec4<f32>,
}
@vertex
fn vertex_main() -> VertexOutput {
var out : VertexOutput;
out.pos = vec4<f32>();
select_b93806();
return out;
}