blob: ff1324a944d3bcb23a8b84012e408214d39d3867 [file] [log] [blame]
dan sinclair20500b82022-10-24 21:57:27 +00001fn atan_749e1b() {
Ben Claytonbe35dec2022-11-04 16:54:02 +00002 const arg_0 = vec3(1.0);
dan sinclair20500b82022-10-24 21:57:27 +00003 var res = atan(arg_0);
4}
5
6@vertex
7fn vertex_main() -> @builtin(position) vec4<f32> {
8 atan_749e1b();
9 return vec4<f32>();
10}
11
12@fragment
13fn fragment_main() {
14 atan_749e1b();
15}
16
17@compute @workgroup_size(1)
18fn compute_main() {
19 atan_749e1b();
20}