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