blob: 6d3012234302a9b890f7e316f444b0b9b1b84bb4 [file] [log] [blame]
fn dot_fc5f7c() {
var res : i32 = dot(vec2<i32>(), vec2<i32>());
}
@stage(vertex)
fn vertex_main() -> @builtin(position) vec4<f32> {
dot_fc5f7c();
return vec4<f32>();
}
@stage(fragment)
fn fragment_main() {
dot_fc5f7c();
}
@stage(compute) @workgroup_size(1)
fn compute_main() {
dot_fc5f7c();
}