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