| 165 | } |
| 166 | |
| 167 | void XImage::Fill(const EFI_GRAPHICS_OUTPUT_BLT_PIXEL& Color) |
| 168 | { |
| 169 | for (UINTN y = 0; y < Height; ++y) |
| 170 | for (UINTN x = 0; x < Width; ++x) |
| 171 | PixelData[y * Width + x] = Color; |
| 172 | } |
| 173 | |
| 174 | void XImage::Fill(const EG_PIXEL* Color) |
| 175 | { |
no outgoing calls
no test coverage detected