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

20 lines
282 B
WebGPU Shading Language

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