Home | History | Annotate | Download | only in CirrusLogic5430Dxe

Lines Matching defs:Blt

214   Width         - The width of a rectangle in the blt rectangle in pixels

215 Height - The height of a rectangle in the blt rectangle in pixels
224 EFI_SUCCESS - Blt operation success
232 EFI_GRAPHICS_OUTPUT_BLT_PIXEL *Blt;
261 // We need to fill the Virtual Screen buffer with the blt data.
330 Blt = (EFI_GRAPHICS_OUTPUT_BLT_PIXEL *) ((UINT8 *) BltBuffer + (DstY * Delta) + (DestinationX + X) * sizeof (EFI_GRAPHICS_OUTPUT_BLT_PIXEL));
332 Blt->Red = PIXEL_TO_RED_BYTE (Private->LineBuffer[X]);
333 Blt->Green = PIXEL_TO_GREEN_BYTE (Private->LineBuffer[X]);
334 Blt->Blue = PIXEL_TO_BLUE_BYTE (Private->LineBuffer[X]);
386 Blt = BltBuffer;
387 Pixel = RGB_BYTES_TO_PIXEL (Blt->Red, Blt->Green, Blt->Blue);
442 Blt =
449 RGB_BYTES_TO_PIXEL (Blt->Red, Blt->Green, Blt->Blue);
496 GraphicsOutput->Blt = CirrusLogic5430GraphicsOutputBlt;