mirror of
https://github.com/libretro/RetroArch
synced 2025-03-25 16:44:01 +00:00
git-subtree-dir: deps/glslang-new git-subtree-split: 5fe506a8ba0ce5629004d593da16db7f3f57c58b
9 lines
152 B
GLSL
9 lines
152 B
GLSL
#version 310 es
|
|
layout (binding=0) uniform Block {
|
|
highp int a[];
|
|
} uni;
|
|
layout (location=0) out highp int o;
|
|
void main() {
|
|
o = uni.a[2];
|
|
}
|