mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-05-28 18:21:22 +00:00
Bug: tint:1580 Change-Id: Ib3a5ff5c567e19eca1ba8fb3c2f7e83dee68e2a0 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/94686 Kokoro: Kokoro <noreply+kokoro@google.com> Commit-Queue: Ben Clayton <bclayton@google.com> Reviewed-by: Dan Sinclair <dsinclair@chromium.org>
9 lines
206 B
HLSL
9 lines
206 B
HLSL
[numthreads(1, 1, 1)]
|
|
void main() {
|
|
int zero[2][3] = (int[2][3])0;
|
|
const int tint_symbol[3] = {1, 2, 3};
|
|
const int tint_symbol_1[3] = {4, 5, 6};
|
|
int init[2][3] = {{1, 2, 3}, {4, 5, 6}};
|
|
return;
|
|
}
|