blob: e2ee40dea2d5d3bcbbdc3ed7b29970b4ad4d39e3 [file] [log] [blame]
fn sin_b78c91() {
var res : f32 = sin(1.570796371f);
}
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
sin_b78c91();
return vec4<f32>();
}
@fragment
fn fragment_main() {
sin_b78c91();
}
@compute @workgroup_size(1)
fn compute_main() {
sin_b78c91();
}