Home | History | Annotate | Download | only in FbGop

Lines Matching defs:Blt

890   // Assign Gop's Blt function

892 FbGopPrivate->GraphicsOutput.Blt = FbGopGraphicsOutputVbeBlt;
1164 @param Width The width of a rectangle in the blt rectangle in
1166 @param Height The height of a rectangle in the blt rectangle in
1177 @retval EFI_SUCCESS Blt operation success
1200 EFI_GRAPHICS_OUTPUT_BLT_PIXEL *Blt;
1229 // We need to fill the Virtual Screen buffer with the blt data.
1274 Blt = (EFI_GRAPHICS_OUTPUT_BLT_PIXEL *) (BltUint8 + DstY * Delta + DestinationX * sizeof (EFI_GRAPHICS_OUTPUT_BLT_PIXEL));
1281 Blt->Red = (UINT8) ((Pixel >> Mode->Red.Position) & Mode->Red.Mask);
1282 Blt->Blue = (UINT8) ((Pixel >> Mode->Blue.Position) & Mode->Blue.Mask);
1283 Blt->Green = (UINT8) ((Pixel >> Mode->Green.Position) & Mode->Green.Mask);
1284 Blt->Reserved = 0;
1285 Blt++;
1329 Blt = (EFI_GRAPHICS_OUTPUT_BLT_PIXEL *) BltUint8;
1333 Pixel = ((Blt->Red & Mode->Red.Mask) << Mode->Red.Position) |
1335 (Blt->Green & Mode->Green.Mask) <<
1338 ((Blt->Blue & Mode->Blue.Mask) << Mode->Blue.Position);
1377 Blt = (EFI_GRAPHICS_OUTPUT_BLT_PIXEL *) (BltUint8 + (SrcY * Delta) + (SourceX) * sizeof (EFI_GRAPHICS_OUTPUT_BLT_PIXEL));
1383 Pixel = ((Blt->Red & Mode->Red.Mask) << Mode->Red.Position) |
1384 ((Blt->Green & Mode->Green.Mask) << Mode->Green.Position) |
1385 ((Blt->Blue & Mode->Blue.Mask) << Mode->Blue.Position);
1391 Blt++;
1433 @param Width The width of a rectangle in the blt rectangle in
1435 @param Height The height of a rectangle in the blt rectangle in
1445 @retval EFI_SUCCESS Blt operation success