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