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