blob: 7159e0b249016fc86c62afcb710f1ca2be3a65f8 [file] [log] [blame]
in half4 a, b;
in uint2 c, d;
in int3 e, f;
void main() {
sk_FragColor.x = lessThan(a, b).x ? 1 : 0;
sk_FragColor.y = lessThan(c, d).y ? 1 : 0;
sk_FragColor.z = lessThan(e, f).z ? 1 : 0;
}