dawn-cmake/test/tint/builtins/gen/sin/fc8bc4.wgsl.expected.wgsl

20 lines
300 B
WebGPU Shading Language

fn sin_fc8bc4() {
var res : vec2<f32> = sin(vec2<f32>());
}
@stage(vertex)
fn vertex_main() -> @builtin(position) vec4<f32> {
sin_fc8bc4();
return vec4<f32>();
}
@stage(fragment)
fn fragment_main() {
sin_fc8bc4();
}
@stage(compute) @workgroup_size(1)
fn compute_main() {
sin_fc8bc4();
}