@group(0) @binding(0) var<storage, read_write> prevent_dce : i32; | |
fn all_986c7b() -> i32 { | |
var arg_0 = vec4<bool>(true); | |
var res : bool = all(arg_0); | |
return select(0, 1, all((res == bool()))); | |
} | |
@fragment | |
fn fragment_main() { | |
prevent_dce = all_986c7b(); | |
} | |
@compute @workgroup_size(1) | |
fn compute_main() { | |
prevent_dce = all_986c7b(); | |
} | |
struct VertexOutput { | |
@builtin(position) | |
pos : vec4<f32>, | |
@location(0) @interpolate(flat) | |
prevent_dce : i32, | |
} | |
@vertex | |
fn vertex_main() -> VertexOutput { | |
var out : VertexOutput; | |
out.pos = vec4<f32>(); | |
out.prevent_dce = all_986c7b(); | |
return out; | |
} |