blob: 3c12969c536664b2c70d77f256dd26d134f2aabc [file] [log] [blame]
fn tan_2f030e() {
var res : f32 = tan(1.0);
}
@stage(vertex)
fn vertex_main() -> @builtin(position) vec4<f32> {
tan_2f030e();
return vec4<f32>();
}
@stage(fragment)
fn fragment_main() {
tan_2f030e();
}
@stage(compute) @workgroup_size(1)
fn compute_main() {
tan_2f030e();
}