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