blob: 605a5a4c7a982d586b351fd4433e5c22ff6db86e [file] [log] [blame]
@group(0) @binding(0) var<storage, read_write> prevent_dce : vec2<i32>;
fn sign_926015() -> vec2<i32> {
var arg_0 = vec2<i32>(1i);
var res : vec2<i32> = sign(arg_0);
return res;
}
@fragment
fn fragment_main() {
prevent_dce = sign_926015();
}
@compute @workgroup_size(1)
fn compute_main() {
prevent_dce = sign_926015();
}
struct VertexOutput {
@builtin(position)
pos : vec4<f32>,
@location(0) @interpolate(flat)
prevent_dce : vec2<i32>,
}
@vertex
fn vertex_main() -> VertexOutput {
var out : VertexOutput;
out.pos = vec4<f32>();
out.prevent_dce = sign_926015();
return out;
}