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