xref: /aosp_15_r20/external/skia/tests/sksl/shared/InterfaceBlockMultipleAnonymous.glsl (revision c8dee2aa9b3f27cf6c858bd81872bdeb2c07ed17)
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