Lines Matching refs:pPix
51 static u8 getCapturedPixR_(const CapturedPixel * pPix);
52 static u8 getCapturedPixG_(const CapturedPixel * pPix);
53 static u8 getCapturedPixB_(const CapturedPixel * pPix);
54 static BOOL getCapturedPixAlpha_(const CapturedPixel * pPix);
471 static u8 getCapturedPixR_(const CapturedPixel * pPix) in getCapturedPixR_() argument
473 SDK_NULL_ASSERT(pPix); in getCapturedPixR_()
474 return (u8)((MASK_CAPTURED_PIX_R & *pPix) >> SHIFT_CAPTURED_PIX_R); in getCapturedPixR_()
477 static u8 getCapturedPixG_(const CapturedPixel * pPix) in getCapturedPixG_() argument
479 SDK_NULL_ASSERT(pPix); in getCapturedPixG_()
480 return (u8)((MASK_CAPTURED_PIX_G & *pPix) >> SHIFT_CAPTURED_PIX_G); in getCapturedPixG_()
483 static u8 getCapturedPixB_(const CapturedPixel * pPix) in getCapturedPixB_() argument
485 SDK_NULL_ASSERT(pPix); in getCapturedPixB_()
486 return (u8)((MASK_CAPTURED_PIX_B & *pPix) >> SHIFT_CAPTURED_PIX_B); in getCapturedPixB_()
489 static BOOL getCapturedPixAlpha_(const CapturedPixel * pPix) in getCapturedPixAlpha_() argument
491 SDK_NULL_ASSERT(pPix); in getCapturedPixAlpha_()
492 return (BOOL)((MASK_CAPTURED_PIX_R & *pPix) >> SHIFT_CAPTURED_PIX_ALPHA); in getCapturedPixAlpha_()