mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-08-06 04:05:40 +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>
13 lines
149 B
HLSL
13 lines
149 B
HLSL
[numthreads(1, 1, 1)]
|
|
void main() {
|
|
while(true) {
|
|
if (true) {
|
|
break;
|
|
} else {
|
|
return;
|
|
}
|
|
}
|
|
const int x = 5;
|
|
return;
|
|
}
|