Home | History | Annotate | Download | only in WinNtGopDxe

Lines Matching defs:Blt

400   This->Blt (

417 Blt pixels from the rectangle (Width X Height) formed by the BltBuffer
430 @param BltBuffer Buffer containing data to blt into video buffer.
434 source of the copy. For other BLT operations this
437 source of the copy. For other BLT operations this
471 EFI_GRAPHICS_OUTPUT_BLT_PIXEL *Blt;
497 // We need to fill the Virtual Screen buffer with the blt data.
523 Blt = (EFI_GRAPHICS_OUTPUT_BLT_PIXEL *) ((UINT8 *) BltBuffer + (DstY * Delta) + DestinationX * sizeof (EFI_GRAPHICS_OUTPUT_BLT_PIXEL));
525 CopyMem (Blt, VScreen, sizeof (EFI_GRAPHICS_OUTPUT_BLT_PIXEL) * Width);
565 Blt = (EFI_GRAPHICS_OUTPUT_BLT_PIXEL *) ((UINT8 *) BltBuffer + (SrcY * Delta) + SourceX * sizeof (EFI_GRAPHICS_OUTPUT_BLT_PIXEL));
566 CopyMem (VScreen, Blt, Width * sizeof (EFI_GRAPHICS_OUTPUT_BLT_PIXEL));
1060 Private->GraphicsOutput.Blt = WinNtGopBlt;