1[[group(1), binding(0)]] var arg_0 : texture_depth_2d_array;
2
3[[group(1), binding(1)]] var arg_1 : sampler_comparison;
4
5fn textureGatherCompare_783e65() {
6  var res : vec4<f32> = textureGatherCompare(arg_0, arg_1, vec2<f32>(), 1, 1.0);
7}
8
9[[stage(vertex)]]
10fn vertex_main() -> [[builtin(position)]] vec4<f32> {
11  textureGatherCompare_783e65();
12  return vec4<f32>();
13}
14
15[[stage(fragment)]]
16fn fragment_main() {
17  textureGatherCompare_783e65();
18}
19
20[[stage(compute), workgroup_size(1)]]
21fn compute_main() {
22  textureGatherCompare_783e65();
23}
24