blob: 4aaabfc44a7e94957c6b511fca56e143d7e8c58d [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();
}