8 lines
124 B
Plaintext
8 lines
124 B
Plaintext
layout(binding=123) uniform testBlock {
|
|
float x;
|
|
} test[2];
|
|
|
|
void main() {
|
|
sk_FragColor = half4(half(test[1].x));
|
|
}
|