blob: 782a3ada8d7f11bcacdafd3be6fa83e6fce6f1eb [file] [log] [blame]
fn atan_d17fb2() {
var res = atan(vec4(1.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;
}