dawn-cmake/test/bug/fxc/dyn_array_idx/read/uniform.wgsl.expected.glsl
James Price f6e5cc03bf Deprecate the @stride attribute
Update validation error for invalid uniform array element alignment.

Update tests to either remove the @stride attribute or use a different
element type.

Bug: tint:1381
Change-Id: I50b52cd78a34d9cd162fa5f2171a5fd35dcf3b79
Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/77560
Reviewed-by: Ben Clayton <bclayton@google.com>
Kokoro: Kokoro <noreply+kokoro@google.com>
2022-01-20 22:11:07 +00:00

32 lines
449 B
GLSL

#version 310 es
precision mediump float;
struct UBO {
ivec4 data[4];
int dynamic_idx;
};
layout (binding = 0) uniform UBO_1 {
ivec4 data[4];
int dynamic_idx;
} ubo;
struct Result {
int tint_symbol;
};
layout (binding = 2) buffer Result_1 {
int tint_symbol;
} result;
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
void f() {
result.tint_symbol = ubo.data[ubo.dynamic_idx].x;
return;
}
void main() {
f();
}