dawn-cmake/test/tint/builtins/gen/dot/fc5f7c.wgsl.expected.wgsl

20 lines
307 B
WebGPU Shading Language

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();
}