9 lines
143 B
Plaintext
9 lines
143 B
Plaintext
|
|
||
|
out vec4 sk_FragColor;
|
||
|
layout (binding = 123) uniform testBlock {
|
||
|
float x;
|
||
|
} test[2];
|
||
|
void main() {
|
||
|
sk_FragColor = vec4(test[1].x);
|
||
|
}
|