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