1layout(binding=456) uniform testBlock {
2    float x;
3} test;
4
5void main() {
6    sk_FragColor = half4(half(test.x));
7}
8