blob: 433101df99f5af9410e0bceb7584e69eb97157ef [file] [log] [blame]
@group(1) @binding(0) var arg_0 : texture_depth_2d_array;
@group(1) @binding(1) var arg_1 : sampler;
fn textureGather_a68027() {
var res : vec4<f32> = textureGather(arg_0, arg_1, vec2<f32>(), 1u, vec2<i32>());
}
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
textureGather_a68027();
return vec4<f32>();
}
@fragment
fn fragment_main() {
textureGather_a68027();
}
@compute @workgroup_size(1)
fn compute_main() {
textureGather_a68027();
}