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