mirror of
https://github.com/RPCS3/glslang.git
synced 2025-02-24 12:50:46 +00:00
9 lines
153 B
GLSL
9 lines
153 B
GLSL
![]() |
#version 310 es
|
||
|
layout (location=0) uniform Block {
|
||
|
highp int a[];
|
||
|
} uni;
|
||
|
layout (location=0) out highp int o;
|
||
|
void main() {
|
||
|
o = uni.a[2];
|
||
|
}
|