Home | History | Annotate | Download | only in Graphics

Lines Matching defs:Blt

125   Convert a *.BMP graphics image to a GOP/UGA blt buffer. If a NULL Blt buffer

159 EFI_GRAPHICS_OUTPUT_BLT_PIXEL *Blt;
272 // Convert image from BMP to Blt buffer format
276 Blt = &BltBuffer[(BmpHeader->PixelHeight - Height - 1) * BmpHeader->PixelWidth];
277 for (Width = 0; Width < BmpHeader->PixelWidth; Width++, Image++, Blt++) {
284 Blt->Red = BmpColorMap[((*Image) >> (7 - Index)) & 0x1].Red;
285 Blt->Green = BmpColorMap[((*Image) >> (7 - Index)) & 0x1].Green;
286 Blt->Blue = BmpColorMap[((*Image) >> (7 - Index)) & 0x1].Blue;
287 Blt++;
291 Blt --;
300 Blt->Red = BmpColorMap[Index].Red;
301 Blt->Green = BmpColorMap[Index].Green;
302 Blt->Blue = BmpColorMap[Index].Blue;
304 Blt++;
307 Blt->Red = BmpColorMap[Index].Red;
308 Blt->Green = BmpColorMap[Index].Green;
309 Blt->Blue = BmpColorMap[Index].Blue;
317 Blt->Red = BmpColorMap[*Image].Red;
318 Blt->Green = BmpColorMap[*Image].Green;
319 Blt->Blue = BmpColorMap[*Image].Blue;
323 Blt->Blue = *Image++;
324 Blt->Green = *Image++;
325 Blt->Red = *Image;
460 EFI_GRAPHICS_OUTPUT_BLT_PIXEL *Blt;
542 Blt = NULL;
546 (VOID**)&Blt,
614 Status = GraphicsOutput->Blt (
616 Blt,
627 Status = UgaDraw->Blt (
629 (EFI_UGA_PIXEL *) Blt,
643 gBS->FreePool (Blt);