mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-08-04 19:25:47 +00:00
This CL rearranges testcases for E2E test/tint/bug/chromium/1367602, now it has testcases for both function, private, and storage address space array variable, with and without explicit initializer, and array count less than 65536. Bug: chromium:1367602 Change-Id: Ica0ec9c36586bc7eae0d46473575284e9b734092 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/105282 Reviewed-by: Ben Clayton <bclayton@google.com> Kokoro: Kokoro <noreply+kokoro@google.com> Commit-Queue: Zhaoming Jiang <zhaoming.jiang@intel.com> Reviewed-by: Dan Sinclair <dsinclair@chromium.org>
15 lines
270 B
GLSL
15 lines
270 B
GLSL
#version 310 es
|
|
|
|
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
|
|
void unused_entry_point() {
|
|
return;
|
|
}
|
|
layout(binding = 0, std430) buffer v_block_ssbo {
|
|
int inner[1000000];
|
|
} v;
|
|
|
|
layout(binding = 1, std430) buffer A_ssbo {
|
|
float a[1000000];
|
|
} b;
|
|
|