1 /* The config section below is required.
4 * # The config section may contain comments.
9 * Description: bit-and with argument type (int, uint)
11 * From page 50 (page 56 of PDF) of the GLSL 1.30 spec:
12 * "The fundamental types of the operands (signed or unsigned) must match"
17 int x = int(7) & uint(1);