blob: 4c6558dfc8a6fd3d5144ee75ebb7c6da067b6de0 [file] [log] [blame]
struct Test {
layout(offset = 0) int x;
layout(offset = 4) int y;
int z;
} test;
void main() {
Test t;
t.x = 0;
sk_FragColor.r = half(t.x);
}