blob: dbb52d286ed08a8a001bafc7468b3795c24f949d [file] [log] [blame]
fn sin_67b03c() {
var res = sin(vec3(1.57079632679000003037));
}
@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;
}