blob: 7d3e072a4a8563e836a171ff60f1cd1977b7a9d6 [file] [log] [blame]
fn atan_749e1b() {
var res = atan(vec3(1.0));
}
@fragment
fn fragment_main() {
atan_749e1b();
}
@compute @workgroup_size(1)
fn compute_main() {
atan_749e1b();
}
struct VertexOutput {
@builtin(position)
pos : vec4<f32>,
}
@vertex
fn vertex_main() -> VertexOutput {
var out : VertexOutput;
out.pos = vec4<f32>();
atan_749e1b();
return out;
}