mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-08-04 11:15:46 +00:00
Change-Id: Id0c879c597e02da32350b2ee4878991fe78c470f Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/78221 Reviewed-by: Ben Clayton <bclayton@google.com> Kokoro: Kokoro <noreply+kokoro@google.com> Commit-Queue: Stephen White <senorblanco@chromium.org>
31 lines
406 B
GLSL
31 lines
406 B
GLSL
#version 310 es
|
|
precision mediump float;
|
|
|
|
struct Constants {
|
|
uint zero;
|
|
};
|
|
|
|
layout(binding = 0) uniform Constants_1 {
|
|
uint zero;
|
|
} constants;
|
|
|
|
struct Result {
|
|
uint value;
|
|
};
|
|
struct S {
|
|
uint data[3];
|
|
};
|
|
|
|
S s = S(uint[3](0u, 0u, 0u));
|
|
|
|
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
|
|
void tint_symbol() {
|
|
s.data[constants.zero] = 0u;
|
|
return;
|
|
}
|
|
void main() {
|
|
tint_symbol();
|
|
}
|
|
|
|
|