Searched defs:clipBit (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/skia/src/gpu/
H A DGrClipMaskManager.cpp739 int clipBit = stencilBuffer->bits(); local
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)); local
972 unsigned int userBits = clipBit - 1;
995 funcMask = clipBit;
996 funcRef = clipBit;
1001 funcMask = (funcMask & userBits) | clipBit;
[all...]
/external/skia/src/gpu/
H A DGrClipMaskManager.cpp739 int clipBit = stencilBuffer->bits(); local
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)); local
972 unsigned int userBits = clipBit - 1;
995 funcMask = clipBit;
996 funcRef = clipBit;
1001 funcMask = (funcMask & userBits) | clipBit;
[all...]

Completed in 273 milliseconds