blob: d53fbf5482ef5f5d34454fd43d63b0317100f362 [file] [log] [blame]
fn atan_d17fb2() {
const arg_0 = vec4(1.0);
var res = atan(arg_0);
}
@fragment
fn fragment_main() {
atan_d17fb2();
}
@compute @workgroup_size(1)
fn compute_main() {
atan_d17fb2();
}
struct VertexOutput {
@builtin(position)
pos : vec4<f32>,
}
@vertex
fn vertex_main() -> VertexOutput {
var out : VertexOutput;
out.pos = vec4<f32>();
atan_d17fb2();
return out;
}