blob: 68e01d406bf4d4a1f5d87ce6cb416a8d5deab46b [file] [log] [blame]
fn cosh_c892bb() {
const arg_0 = 0.0;
var res = cosh(arg_0);
}
@fragment
fn fragment_main() {
cosh_c892bb();
}
@compute @workgroup_size(1)
fn compute_main() {
cosh_c892bb();
}
struct VertexOutput {
@builtin(position)
pos : vec4<f32>,
}
@vertex
fn vertex_main() -> VertexOutput {
var out : VertexOutput;
out.pos = vec4<f32>();
cosh_c892bb();
return out;
}