61 IN OUT EFI_GRAPHICS_OUTPUT_BLT_PIXEL *BackPixel,
62 IN CONST EFI_GRAPHICS_OUTPUT_BLT_PIXEL *FrontPixel,
66 EFI_GRAPHICS_OUTPUT_BLT_PIXEL OpacFrontPixel;
72 ASSERT (BackPixel != NULL);
73 ASSERT (FrontPixel != NULL);
77 if (FrontPixel->Reserved == 0) {
81 if (FrontPixel->Reserved == 0xFF) {
82 OpacFrontPixel.Reserved = Opacity;
85 if (OpacFrontPixel.Reserved == 0) {
99 IN OUT EFI_GRAPHICS_OUTPUT_BLT_PIXEL *BackPixel,
100 IN CONST EFI_GRAPHICS_OUTPUT_BLT_PIXEL *FrontPixel
107 ASSERT (BackPixel != NULL);
108 ASSERT (FrontPixel != NULL);
110 if (FrontPixel->Reserved == 0) {
114 if (FrontPixel->Reserved == 0xFF) {
115 BackPixel->Blue = FrontPixel->Blue;
116 BackPixel->Green = FrontPixel->Green;
117 BackPixel->Red = FrontPixel->Red;
118 BackPixel->Reserved = FrontPixel->Reserved;