blob: 75c55c626775ac135502cea7047bd9d4bc5b9b98 [file] [log] [blame]
fn asin_a5dd88() {
var res = asin(vec2(0.4794255386040000011));
}
@fragment
fn fragment_main() {
asin_a5dd88();
}
@compute @workgroup_size(1)
fn compute_main() {
asin_a5dd88();
}
struct VertexOutput {
@builtin(position)
pos : vec4<f32>,
}
@vertex
fn vertex_main() -> VertexOutput {
var out : VertexOutput;
out.pos = vec4<f32>();
asin_a5dd88();
return out;
}