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