Home | History | Annotate | Download | only in Host

Lines Matching defs:Blt

728   EFI_UGA_PIXEL     *Blt;
772 Blt = (EFI_UGA_PIXEL *)((UINT8 *)BltBuffer + (Args->DestinationY * Args->Delta) + Args->DestinationX * sizeof (EFI_UGA_PIXEL));
776 *Blt++ = X11ColorToPixel (Private, XGetPixel (Private->image, SrcX, SrcY));
778 Blt = (EFI_UGA_PIXEL *) ((UINT8 *) Blt + Args->Delta);
782 Blt = (EFI_UGA_PIXEL *)((UINT8 *)BltBuffer + (Args->SourceY * Args->Delta) + Args->SourceX * sizeof (EFI_UGA_PIXEL));
786 XPutPixel(Private->image, DstX, DstY, X11PixelToColor(Private, *Blt));
787 Blt++;
789 Blt = (EFI_UGA_PIXEL *) ((UINT8 *) Blt + Args->Delta);
932 Drv->GraphicsIo.Blt = GasketX11Blt;