mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-06-01 20:21:23 +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
161 B
HLSL
8 lines
161 B
HLSL
[numthreads(1, 1, 1)]
|
|
void f() {
|
|
const uint3 a = uint3(1u, 2u, 3u);
|
|
const uint3 b = uint3(4u, 5u, 6u);
|
|
const uint3 r = (a << (b & (31u).xxx));
|
|
return;
|
|
}
|