Home | History | Annotate | Download | only in program

Lines Matching refs:Swizzle

675    /* init swizzle fields */
676 srcReg->Swizzle = SWIZZLE_NOOP;
678 /* Look for optional swizzle suffix */
688 /* single letter swizzle */
690 srcReg->Swizzle = SWIZZLE_XXXX;
692 srcReg->Swizzle = SWIZZLE_YYYY;
694 srcReg->Swizzle = SWIZZLE_ZZZZ;
696 srcReg->Swizzle = SWIZZLE_WWWW;
701 /* 2, 3 or 4-component swizzle */
704 srcReg->Swizzle = 0;
708 srcReg->Swizzle |= 0 << (k*3);
710 srcReg->Swizzle |= 1 << (k*3);
712 srcReg->Swizzle |= 2 << (k*3);
714 srcReg->Swizzle |= 3 << (k*3);
777 srcReg->Swizzle = 0;
780 srcReg->Swizzle = 1;
783 srcReg->Swizzle = 2;
786 srcReg->Swizzle = 3;
1068 srcReg->Swizzle = SWIZZLE_NOOP;