mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-06-03 13:11:34 +00:00
Fixed: tint:1453 Fixed: tint:1543 Change-Id: Idb5af752d7a3bb9e181cc47430ad4ddfb707873d Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/108440 Auto-Submit: Ben Clayton <bclayton@google.com> Kokoro: Kokoro <noreply+kokoro@google.com> Commit-Queue: Ben Clayton <bclayton@google.com> Reviewed-by: Dan Sinclair <dsinclair@chromium.org>
8 lines
155 B
HLSL
8 lines
155 B
HLSL
[numthreads(1, 1, 1)]
|
|
void f() {
|
|
const int3 a = int3(1, 2, 3);
|
|
const uint3 b = uint3(4u, 5u, 6u);
|
|
const int3 r = (a >> (b & (31u).xxx));
|
|
return;
|
|
}
|