• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1fn atan2_57fb13() {
2  var res : vec2<f32> = atan2(vec2<f32>(), vec2<f32>());
3}
4
5[[stage(vertex)]]
6fn vertex_main() -> [[builtin(position)]] vec4<f32> {
7  atan2_57fb13();
8  return vec4<f32>();
9}
10
11[[stage(fragment)]]
12fn fragment_main() {
13  atan2_57fb13();
14}
15
16[[stage(compute), workgroup_size(1)]]
17fn compute_main() {
18  atan2_57fb13();
19}
20