blob: a2a77ef4fd88a2610c72cc6d2aa6258b963f3331 [file] [log] [blame]
fn atan2_96057c() {
var arg_0 = 1.0f;
var arg_1 = 1.0f;
var res : f32 = atan2(arg_0, arg_1);
prevent_dce = res;
}
@group(2) @binding(0) var<storage, read_write> prevent_dce : f32;
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
atan2_96057c();
return vec4<f32>();
}
@fragment
fn fragment_main() {
atan2_96057c();
}
@compute @workgroup_size(1)
fn compute_main() {
atan2_96057c();
}