mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-08 11:30:06 +00:00
10 lines
96 B
GLSL
10 lines
96 B
GLSL
struct A {
|
|
float a[];
|
|
};
|
|
|
|
RWStructuredBuffer <A> B;
|
|
|
|
float main() {
|
|
return B[0].a[0];
|
|
}
|