mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-08-06 12:15:43 +00:00
Fixed: tint:1474 Change-Id: I462ae7bdb17a394b0a4c185fc815fe9727044555 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/105963 Commit-Queue: David Neto <dneto@google.com> Commit-Queue: Ben Clayton <bclayton@chromium.org> Kokoro: Kokoro <noreply+kokoro@google.com> Reviewed-by: David Neto <dneto@google.com>
16 lines
395 B
HLSL
16 lines
395 B
HLSL
bug/tint/1474-b.wgsl:7:9 warning: code is unreachable
|
|
let non_uniform_cond = non_uniform_value == 0;
|
|
^^^^^^^^^^^^^^^^
|
|
|
|
RWByteAddressBuffer non_uniform_value : register(u0, space0);
|
|
|
|
[numthreads(1, 1, 1)]
|
|
void main() {
|
|
return;
|
|
const bool non_uniform_cond = (asint(non_uniform_value.Load(0u)) == 0);
|
|
if (non_uniform_cond) {
|
|
GroupMemoryBarrierWithGroupSync();
|
|
}
|
|
return;
|
|
}
|