blob: eba44c8c336412b5f8abe8de2dcf3dcfa9b0883b [file] [log] [blame]
fn acos_4dac75() {
var res = acos(vec4(0.96891242171000002692));
}
@fragment
fn fragment_main() {
acos_4dac75();
}
@compute @workgroup_size(1)
fn compute_main() {
acos_4dac75();
}
struct VertexOutput {
@builtin(position)
pos : vec4<f32>,
}
@vertex
fn vertex_main() -> VertexOutput {
var out : VertexOutput;
out.pos = vec4<f32>();
acos_4dac75();
return out;
}