blob: f9b972bb106a0f43a6e714e49046fa578e05241a [file] [log] [blame]
fn abs_b96037() {
var res : f32 = abs(1.0);
}
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
abs_b96037();
return vec4<f32>();
}
@fragment
fn fragment_main() {
abs_b96037();
}
@compute @workgroup_size(1)
fn compute_main() {
abs_b96037();
}