blob: 88c86c85fbb37170e377da3e340a9ec2c1c6c599 [file] [log] [blame]
fn tan_7be368() {
const arg_0 = vec2(1.0);
var res = tan(arg_0);
}
@fragment
fn fragment_main() {
tan_7be368();
}
@compute @workgroup_size(1)
fn compute_main() {
tan_7be368();
}
struct VertexOutput {
@builtin(position)
pos : vec4<f32>,
}
@vertex
fn vertex_main() -> VertexOutput {
var out : VertexOutput;
out.pos = vec4<f32>();
tan_7be368();
return out;
}