HomeSort by relevance Sort by last modified time
    Searched defs:Blt (Results 1 - 25 of 34) sorted by null

1 2

  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/FrameworkHiiOnUefiHiiThunk/
Fonts.c 64 EFI_IMAGE_OUTPUT *Blt;
92 Blt = NULL;
97 &Blt,
105 if (Blt->Height == EFI_GLYPH_HEIGHT && Blt->Width == EFI_GLYPH_WIDTH) {
111 if (CompareMem (&Blt->Image.Bitmap[Ypos * EFI_GLYPH_WIDTH + Xpos], &mSysFGColor, sizeof (EFI_GRAPHICS_OUTPUT_BLT_PIXEL)) == 0) {
136 Translates a glyph into the format required for input to the Universal Graphics Adapter (UGA) Block Transfer (BLT) routines.
150 @param BltBuffer A pointer to the buffer that contains the data that is ready to be used by the UGA BLT routines.
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/BmpImageDecoderLib/
BmpImageDecoderLib.c 24 Convert a *.BMP graphics image to a callee allocated GOP blt buffer.
57 EFI_GRAPHICS_OUTPUT_BLT_PIXEL *Blt;
172 // Convert image from BMP to Blt buffer format
176 Blt = &BltBuffer[(BmpHeader->PixelHeight - Height - 1) * BmpHeader->PixelWidth];
177 for (Width = 0; Width < BmpHeader->PixelWidth; Width++, Image++, Blt++) {
184 Blt->Red = BmpColorMap[((*Image) >> (7 - Index)) & 0x1].Red;
185 Blt->Green = BmpColorMap[((*Image) >> (7 - Index)) & 0x1].Green;
186 Blt->Blue = BmpColorMap[((*Image) >> (7 - Index)) & 0x1].Blue;
187 Blt++;
191 Blt--;
    [all...]
  /device/linaro/bootloader/edk2/OptionRomPkg/CirrusLogic5430Dxe/
CirrusLogic5430UgaDraw.c 129 EFI_UGA_PIXEL *Blt;
157 // We need to fill the Virtual Screen buffer with the blt data.
225 Blt = (EFI_UGA_PIXEL *) ((UINT8 *) BltBuffer + (DstY * Delta) + (DestinationX + X) * sizeof (EFI_UGA_PIXEL));
227 Blt->Red = (UINT8) (Private->LineBuffer[X] & 0xe0);
228 Blt->Green = (UINT8) ((Private->LineBuffer[X] & 0x1c) << 3);
229 Blt->Blue = (UINT8) ((Private->LineBuffer[X] & 0x03) << 6);
281 Blt = BltBuffer;
282 Pixel = (UINT8) ((Blt->Red & 0xe0) | ((Blt->Green >> 3) & 0x1c) | ((Blt->Blue >> 6) & 0x03));
    [all...]
CirrusLogic5430GraphicsOutput.c 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;
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Include/Protocol/
UgaDraw.h 98 Type specifying a pointer to a function to perform an UGA Blt operation.
139 @retval EFI_SUCCESS - The Blt operation completed.
162 EFI_UGA_DRAW_PROTOCOL_BLT Blt;
GraphicsOutput.h 155 @retval EFI_SUCCESS The Blt operation completed.
187 EFI_GRAPHICS_OUTPUT_PROTOCOL_BLT Blt;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Protocol/UgaDraw/
UgaDraw.h 165 EFI_SUCCESS - The Blt operation completed.
176 EFI_UGA_DRAW_PROTOCOL_BLT Blt;
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
UgaDraw.h 88 /// Enumration value for actions of Blt operations.
115 EfiUgaBltMax ///< Maxmimum value for enumration value of Blt operation. If a Blt operation
120 Blt a rectangle of pixels on the graphics screen.
134 @retval EFI_SUCCESS - The Blt operation completed.
161 EFI_UGA_DRAW_PROTOCOL_BLT Blt;
GraphicsOutput.h 193 Blt a rectangle of pixels on the graphics screen. Blt stands for BLock Transfer.
203 @param Width The width of a rectangle in the blt rectangle in pixels.
204 @param Height The height of a rectangle in the blt rectangle in pixels.
267 EFI_GRAPHICS_OUTPUT_PROTOCOL_BLT Blt;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/Graphics/
Graphics.c 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++;
    [all...]
Print.c 169 EFI_IMAGE_OUTPUT *Blt;
198 Blt = NULL;
241 Blt = (EFI_IMAGE_OUTPUT *) EfiLibAllocateZeroPool (sizeof (EFI_IMAGE_OUTPUT));
242 if (Blt == NULL) {
247 Blt->Width = (UINT16) (HorizontalResolution);
248 Blt->Height = (UINT16) (VerticalResolution);
249 Blt->Image.Screen = GraphicsOutput;
280 &Blt,
329 // Blt a character to the screen
332 Status = GraphicsOutput->Blt (
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/GraphicsLite/
Graphics.c 126 Convert a *.BMP graphics image to a GOP/UGA blt buffer. If a NULL Blt buffer
160 EFI_GRAPHICS_OUTPUT_BLT_PIXEL *Blt;
273 // Convert image from BMP to Blt buffer format
277 Blt = &BltBuffer[(BmpHeader->PixelHeight - Height - 1) * BmpHeader->PixelWidth];
278 for (Width = 0; Width < BmpHeader->PixelWidth; Width++, Image++, Blt++) {
285 Blt->Red = BmpColorMap[((*Image) >> (7 - Index)) & 0x1].Red;
286 Blt->Green = BmpColorMap[((*Image) >> (7 - Index)) & 0x1].Green;
287 Blt->Blue = BmpColorMap[((*Image) >> (7 - Index)) & 0x1].Blue;
288 Blt++;
    [all...]
Print.c 144 EFI_IMAGE_OUTPUT *Blt;
173 Blt = NULL;
215 Blt = (EFI_IMAGE_OUTPUT *) EfiLibAllocateZeroPool (sizeof (EFI_IMAGE_OUTPUT));
216 if (Blt == NULL) {
221 Blt->Width = (UINT16) (HorizontalResolution);
222 Blt->Height = (UINT16) (VerticalResolution);
223 Blt->Image.Screen = GraphicsOutput;
254 &Blt,
303 // Blt a character to the screen
306 Status = GraphicsOutput->Blt (
    [all...]
  /device/linaro/bootloader/edk2/EmulatorPkg/Include/Protocol/
EmuFileSystem.h 131 EMU_GRAPHICS_WINDOWS_BLT Blt;
EmuGraphicsWindow.h 125 EMU_GRAPHICS_WINDOWS_BLT Blt;
  /device/linaro/bootloader/edk2/IntelFrameworkPkg/Library/FrameworkUefiLib/
UefiLibPrint.c 356 EFI_IMAGE_OUTPUT *Blt;
370 Blt = NULL;
426 Blt = (EFI_IMAGE_OUTPUT *) AllocateZeroPool (sizeof (EFI_IMAGE_OUTPUT));
427 ASSERT (Blt != NULL);
429 Blt->Width = (UINT16) (HorizontalResolution);
430 Blt->Height = (UINT16) (VerticalResolution);
454 Blt->Image.Screen = GraphicsOutput;
463 &Blt,
477 Blt->Image.Bitmap = AllocateZeroPool (Blt->Width * Blt->Height * sizeof (EFI_GRAPHICS_OUTPUT_BLT_PIXEL));
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/BootLogoLib/
BootLogoLib.c 66 EFI_GRAPHICS_OUTPUT_BLT_PIXEL *Blt;
137 Blt = NULL;
182 if (Blt != NULL) {
183 FreePool (Blt);
186 Status = DecodeImage (ImageFormat, ImageData, ImageSize, &Blt, &BltSize, &Width, &Height);
252 Status = GraphicsOutput->Blt (
254 Blt,
266 Status = UgaDraw->Blt (
268 (EFI_UGA_PIXEL *) Blt,
320 if (Blt != NULL) {
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/UefiLib/
UefiLibPrint.c 356 EFI_IMAGE_OUTPUT *Blt;
370 Blt = NULL;
426 Blt = (EFI_IMAGE_OUTPUT *) AllocateZeroPool (sizeof (EFI_IMAGE_OUTPUT));
427 ASSERT (Blt != NULL);
429 Blt->Width = (UINT16) (HorizontalResolution);
430 Blt->Height = (UINT16) (VerticalResolution);
454 Blt->Image.Screen = GraphicsOutput;
463 &Blt,
477 Blt->Image.Bitmap = AllocateZeroPool (Blt->Width * Blt->Height * sizeof (EFI_GRAPHICS_OUTPUT_BLT_PIXEL));
    [all...]
  /device/linaro/bootloader/edk2/CorebootPayloadPkg/FbGop/
FbGop.c 890 // Assign Gop's Blt function
892 FbGopPrivate->GraphicsOutput.Blt = FbGopGraphicsOutputVbeBlt;
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Protocol/GraphicsOutput/
GraphicsOutput.h 180 EFI_SUCCESS - The Blt operation completed.
200 EFI_GRAPHICS_OUTPUT_PROTOCOL_BLT Blt;
  /device/linaro/bootloader/edk2/Nt32Pkg/WinNtGopDxe/
WinNtGopScreen.c 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_ (…)
    [all...]
  /device/linaro/bootloader/edk2/OptionRomPkg/Library/FrameBufferBltLib/
FrameBufferBltLib.c 2 FrameBufferBltLib - Library to perform blt operations on a frame buffer.
85 @retval EFI_SUCCESS - Blt operation success
131 Performs a UEFI Graphics Output Protocol Blt operation.
139 @param[in] Width - The width of a rectangle in the blt rectangle in pixels
140 @param[in] Height - The height of a rectangle in the blt rectangle in pixels
148 @retval EFI_SUCCESS - Blt operation success
215 Performs a UEFI Graphics Output Protocol Blt Video Fill.
361 Performs a UEFI Graphics Output Protocol Blt Video to Buffer operation.
398 Performs a UEFI Graphics Output Protocol Blt Video to Buffer operation
430 EFI_GRAPHICS_OUTPUT_BLT_PIXEL *Blt;
    [all...]
  /external/syslinux/efi/
console.c 237 void *Blt;
  /device/linaro/bootloader/edk2/EmulatorPkg/Unix/Host/
X11GraphicsWindow.c 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)
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/GenericBdsLib/
BdsConsole.c 646 Convert a *.BMP graphics image to a GOP blt buffer. If a NULL Blt buffer
679 EFI_GRAPHICS_OUTPUT_BLT_PIXEL *Blt;
804 // Convert image from BMP to Blt buffer format
808 Blt = &BltBuffer[(BmpHeader->PixelHeight - Height - 1) * BmpHeader->PixelWidth];
809 for (Width = 0; Width < BmpHeader->PixelWidth; Width++, Image++, Blt++) {
816 Blt->Red = BmpColorMap[((*Image) >> (7 - Index)) & 0x1].Red;
817 Blt->Green = BmpColorMap[((*Image) >> (7 - Index)) & 0x1].Green;
818 Blt->Blue = BmpColorMap[((*Image) >> (7 - Index)) & 0x1].Blue;
819 Blt++;
    [all...]

Completed in 598 milliseconds

1 2