Home | History | Annotate | Download | only in BmpImageDecoderLib

Lines Matching defs:Blt

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--;
200 Blt->Red = BmpColorMap[Index].Red;
201 Blt->Green = BmpColorMap[Index].Green;
202 Blt->Blue = BmpColorMap[Index].Blue;
204 Blt++;
207 Blt->Red = BmpColorMap[Index].Red;
208 Blt->Green = BmpColorMap[Index].Green;
209 Blt->Blue = BmpColorMap[Index].Blue;
217 Blt->Red = BmpColorMap[*Image].Red;
218 Blt->Green = BmpColorMap[*Image].Green;
219 Blt->Blue = BmpColorMap[*Image].Blue;
226 Blt->Blue = *Image++;
227 Blt->Green = *Image++;
228 Blt->Red = *Image;