dawn-cmake/test/tint/builtins/gen/literal/textureGather/24b0bd.wgsl.expected.wgsl

24 lines
457 B
WebGPU Shading Language

@group(1) @binding(1) var arg_1 : texture_2d_array<f32>;
@group(1) @binding(2) var arg_2 : sampler;
fn textureGather_24b0bd() {
var res : vec4<f32> = textureGather(1u, arg_1, arg_2, vec2<f32>(1.0f), 1i);
}
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
textureGather_24b0bd();
return vec4<f32>();
}
@fragment
fn fragment_main() {
textureGather_24b0bd();
}
@compute @workgroup_size(1)
fn compute_main() {
textureGather_24b0bd();
}