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