Lines Matching refs:fullclr
7153 MS_U32 fullclr = 0; in Ioctl_GOP_SetProperty() local
7172 fullclr = ((clr>>10)&0x1f)<<3; // R in Ioctl_GOP_SetProperty()
7173 fullclr |= ((clr>>12)&0x7); in Ioctl_GOP_SetProperty()
7174 fullclr = fullclr << 8; in Ioctl_GOP_SetProperty()
7175 fullclr |= ((clr>>5)&0x1f)<<3; // G in Ioctl_GOP_SetProperty()
7176 fullclr |= ((clr>>7)&0x7); in Ioctl_GOP_SetProperty()
7177 fullclr = fullclr << 8; in Ioctl_GOP_SetProperty()
7178 fullclr |= (clr&0x1f)<<3; // B in Ioctl_GOP_SetProperty()
7179 fullclr |= ((clr>>2)&0x7); // B in Ioctl_GOP_SetProperty()
7180 MDrv_GOP_GWIN_SetTransClr_8888(g_pGOPCtxLocal,gop, fullclr, 0); in Ioctl_GOP_SetProperty()
7185 MDrv_GOP_GWIN_ReadPalette(g_pGOPCtxLocal,gop, clr, &fullclr); in Ioctl_GOP_SetProperty()
7186 MDrv_GOP_GWIN_SetTransClr_8888(g_pGOPCtxLocal,gop, fullclr, 0); in Ioctl_GOP_SetProperty()
7190 fullclr = ptrans_clr->color; in Ioctl_GOP_SetProperty()
7191 MDrv_GOP_GWIN_SetTransClr_8888(g_pGOPCtxLocal,gop, fullclr, 0); in Ioctl_GOP_SetProperty()
7194 fullclr = (clr&0xff)<<16; //V in Ioctl_GOP_SetProperty()
7195 fullclr |= ((clr>>8)&0xff)<<8; //Y in Ioctl_GOP_SetProperty()
7196 fullclr |= ((clr>>16)&0xff); //U in Ioctl_GOP_SetProperty()
7197 MDrv_GOP_GWIN_SetTransClr_YUV(g_pGOPCtxLocal, gop, fullclr, 0x0); in Ioctl_GOP_SetProperty()