blob: 29a6f59e31072b35328035dccc4771e32a9122e6 [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>(1.0f), 1u, vec2<i32>(1i));
}
@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();
}