blob: 70823129e9338c60f99573b78e8386d3947f4e23 [file] [log] [blame]
fn sin_a9ab19() {
const arg_0 = 1.57079632679;
var res = sin(arg_0);
}
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
sin_a9ab19();
return vec4<f32>();
}
@fragment
fn fragment_main() {
sin_a9ab19();
}
@compute @workgroup_size(1)
fn compute_main() {
sin_a9ab19();
}