mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-06-05 06:03:34 +00:00
Fixed: tint:1844 Change-Id: I812dd338925c1dccaa3029a46e10a0ea34a8ed54 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/120960 Commit-Queue: Ben Clayton <bclayton@google.com> Kokoro: Kokoro <noreply+kokoro@google.com> Reviewed-by: Dan Sinclair <dsinclair@chromium.org> Commit-Queue: Ben Clayton <bclayton@chromium.org>
14 lines
207 B
GLSL
14 lines
207 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 G_block_ssbo {
|
|
int inner[];
|
|
} G;
|
|
|
|
void n() {
|
|
}
|
|
|