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