blob: 97e45397c9b75425f9080617950b988da03930c3 [file] [log] [blame]
Antonio Maiorano4de90f02022-07-27 14:51:27 +00001fn atan2_c19683() {
Ben Claytonbe35dec2022-11-04 16:54:02 +00002 const arg_0 = vec2(1.0);
3 const arg_1 = vec2(1.0);
Antonio Maiorano4de90f02022-07-27 14:51:27 +00004 var res = atan2(arg_0, arg_1);
5}
6
7@vertex
8fn vertex_main() -> @builtin(position) vec4<f32> {
9 atan2_c19683();
10 return vec4<f32>();
11}
12
13@fragment
14fn fragment_main() {
15 atan2_c19683();
16}
17
18@compute @workgroup_size(1)
19fn compute_main() {
20 atan2_c19683();
21}