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