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