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