dawn-cmake/test/tint/builtins/gen/literal/textureGather/1bf0ab.wgsl.expected.wgsl
Ben Clayton da5424b617 tint: Allow signed / unsigned texture builtin params
Bug: tint:1526
Change-Id: I301a9ba6e94b162a1ffb436be3e3212b723b7401
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/106682
Reviewed-by: Dan Sinclair <dsinclair@chromium.org>
Kokoro: Kokoro <noreply+kokoro@google.com>
Commit-Queue: Ben Clayton <bclayton@google.com>
2022-10-24 23:58:53 +00:00

24 lines
453 B
WebGPU Shading Language

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