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