Home | History | Annotate | Download | only in gpu

Lines Matching full:clipbit

739         int clipBit = stencilBuffer->bits();
740 SkASSERT((clipBit <= 16) && "Ganesh only handles 16b or smaller stencil buffers");
741 clipBit = (1 << (clipBit-1));
798 clipBit,
971 unsigned int clipBit = (1 << (stencilBitCnt - 1));
972 unsigned int userBits = clipBit - 1;
995 funcMask = clipBit;
996 funcRef = clipBit;
1001 funcMask = (funcMask & userBits) | clipBit;
1002 funcRef = (funcRef & userBits) | clipBit;
1005 funcMask = (funcMask & userBits) | clipBit;
1006 funcRef = clipBit;