blob: 8b7ea00ce2ebfd7a17b05cda25bc7e78de8f13fa [file] [log] [blame]
fn dot_5a4c8f() {
var res = dot(vec3(1.0), vec3(1.0));
}
@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;
}