1uniform int a;
2uniform uint b;
3void main() {
4    sk_FragColor.x = half(findLSB(a));
5    sk_FragColor.y = half(findLSB(b));
6}
7