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