Home | History | Annotate | Download | only in CirrusLogic5430Dxe

Lines Matching defs:Blt

129   EFI_UGA_PIXEL                   *Blt;

157 // We need to fill the Virtual Screen buffer with the blt data.
225 Blt = (EFI_UGA_PIXEL *) ((UINT8 *) BltBuffer + (DstY * Delta) + (DestinationX + X) * sizeof (EFI_UGA_PIXEL));
227 Blt->Red = (UINT8) (Private->LineBuffer[X] & 0xe0);
228 Blt->Green = (UINT8) ((Private->LineBuffer[X] & 0x1c) << 3);
229 Blt->Blue = (UINT8) ((Private->LineBuffer[X] & 0x03) << 6);
281 Blt = BltBuffer;
282 Pixel = (UINT8) ((Blt->Red & 0xe0) | ((Blt->Green >> 3) & 0x1c) | ((Blt->Blue >> 6) & 0x03));
337 Blt = (EFI_UGA_PIXEL *) ((UINT8 *) BltBuffer + (SrcY * Delta) + (SourceX + X) * sizeof (EFI_UGA_PIXEL));
338 Private->LineBuffer[X] = (UINT8) ((Blt->Red & 0xe0) | ((Blt->Green >> 3) & 0x1c) | ((Blt->Blue >> 6) & 0x03));
391 UgaDraw->Blt = CirrusLogic5430UgaDrawBlt;