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