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