blob: 28ff0c454530b51362d85b0658cd94fa9664ec41 [file] [log] [blame]
fn sinh_7bb598() {
var res : f32 = sinh(1.0);
}
[[stage(vertex)]]
fn vertex_main() -> [[builtin(position)]] vec4<f32> {
sinh_7bb598();
return vec4<f32>();
}
[[stage(fragment)]]
fn fragment_main() {
sinh_7bb598();
}
[[stage(compute)]]
fn compute_main() {
sinh_7bb598();
}