blob: f41171260758c8a698b0fadf6a26a2e36c4aaab4 [file] [log] [blame]
fn mix_42d11d() {
var res = mix(vec2(1.0), vec2(1.0), 1.0);
}
@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;
}