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