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