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