dawn-cmake/test/tint/builtins/gen/literal/atan2/a70d0d.wgsl.expected.wgsl

20 lines
310 B
WebGPU Shading Language

fn atan2_a70d0d() {
var res : vec3<f32> = atan2(vec3<f32>(1.0f), vec3<f32>(1.0f));
}
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
atan2_a70d0d();
return vec4<f32>();
}
@fragment
fn fragment_main() {
atan2_a70d0d();
}
@compute @workgroup_size(1)
fn compute_main() {
atan2_a70d0d();
}