1 2out vec4 sk_FragColor; 3layout (binding = 123) uniform testBlock { 4 float x; 5} test[2]; 6void main() { 7 sk_FragColor = vec4(test[1].x); 8} 9