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