1uniform half a, b; 2uniform half4 c, d; 3void main() { 4 sk_FragColor.x = mod(a, b); 5 sk_FragColor = mod(c, b); 6 sk_FragColor = mod(c, d); 7} 8