mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-07-14 00:56:05 +00:00
Fixed: tint:1733 Change-Id: Id83c5c5a59df062320a9a9fde087a34b85fbaa2a Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/107160 Commit-Queue: Ben Clayton <bclayton@google.com> Reviewed-by: Dan Sinclair <dsinclair@chromium.org>
24 lines
453 B
WebGPU Shading Language
24 lines
453 B
WebGPU Shading Language
@group(1) @binding(1) var arg_1 : texture_2d_array<i32>;
|
|
|
|
@group(1) @binding(2) var arg_2 : sampler;
|
|
|
|
fn textureGather_445793() {
|
|
var res : vec4<i32> = textureGather(1u, arg_1, arg_2, vec2<f32>(), 1i);
|
|
}
|
|
|
|
@vertex
|
|
fn vertex_main() -> @builtin(position) vec4<f32> {
|
|
textureGather_445793();
|
|
return vec4<f32>();
|
|
}
|
|
|
|
@fragment
|
|
fn fragment_main() {
|
|
textureGather_445793();
|
|
}
|
|
|
|
@compute @workgroup_size(1)
|
|
fn compute_main() {
|
|
textureGather_445793();
|
|
}
|