mirror of
https://github.com/bevyengine/bevy
synced 2025-01-26 03:45:16 +00:00
8 lines
153 B
GLSL
8 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];
|
|
}
|