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

22 lines
349 B
WebGPU Shading Language
Raw Normal View History

fn dot_fc5f7c() {
var arg_0 = vec2<i32>();
var arg_1 = vec2<i32>();
var res : i32 = dot(arg_0, arg_1);
}
@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();
}