blob: 740a6a44db437d72eec803991321eb75f12c5c82 [file] [log] [blame]
fn sign_55339e() {
const arg_0 = vec3(1);
var res = sign(arg_0);
}
@fragment
fn fragment_main() {
sign_55339e();
}
@compute @workgroup_size(1)
fn compute_main() {
sign_55339e();
}
struct VertexOutput {
@builtin(position)
pos : vec4<f32>,
}
@vertex
fn vertex_main() -> VertexOutput {
var out : VertexOutput;
out.pos = vec4<f32>();
sign_55339e();
return out;
}