1 2out vec4 sk_FragColor; 3layout (binding = 1) uniform testBlockA { 4 vec2 x; 5}; 6layout (binding = 2) uniform testBlockB { 7 vec2 y; 8}; 9void main() { 10 sk_FragColor = vec4(x, y); 11} 12