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