blob: 97c3051805fe62874e140860aee96675f34c2bc3 [file] [log] [blame]
fn mix_343c49() {
const arg_0 = vec3(1.0);
const arg_1 = vec3(1.0);
const arg_2 = vec3(1.0);
var res = mix(arg_0, arg_1, arg_2);
}
@fragment
fn fragment_main() {
mix_343c49();
}
@compute @workgroup_size(1)
fn compute_main() {
mix_343c49();
}
struct VertexOutput {
@builtin(position)
pos : vec4<f32>,
}
@vertex
fn vertex_main() -> VertexOutput {
var out : VertexOutput;
out.pos = vec4<f32>();
mix_343c49();
return out;
}