7 lines
140 B
Plaintext
7 lines
140 B
Plaintext
uniform half2 ah, bh;
|
|
uniform float2 af, bf;
|
|
void main() {
|
|
sk_FragColor.x = cross(ah, bh);
|
|
sk_FragColor.y = half(cross(af, bf));
|
|
}
|