blob: bb77500f44a75bce228ebc69f05e230c3bda3468 [file] [log] [blame]
fn acosh_640883() {
var res : vec2<f32> = acosh(vec2<f32>(1.54308068752288818359f));
prevent_dce = res;
}
@group(2) @binding(0) var<storage, read_write> prevent_dce : vec2<f32>;
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
acosh_640883();
return vec4<f32>();
}
@fragment
fn fragment_main() {
acosh_640883();
}
@compute @workgroup_size(1)
fn compute_main() {
acosh_640883();
}