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