Lines Matching refs:GraphicsOutput
259 EFI_GRAPHICS_OUTPUT_PROTOCOL *GraphicsOutput = NULL; in graphics_splash() local
282 err = LibLocateProtocol(&GraphicsOutputProtocol, (void **)&GraphicsOutput); in graphics_splash()
290 if (dib->x < GraphicsOutput->Mode->Info->HorizontalResolution) in graphics_splash()
291 x_pos = (GraphicsOutput->Mode->Info->HorizontalResolution - dib->x) / 2; in graphics_splash()
292 if (dib->y < GraphicsOutput->Mode->Info->VerticalResolution) in graphics_splash()
293 y_pos = (GraphicsOutput->Mode->Info->VerticalResolution - dib->y) / 2; in graphics_splash()
295 err = GraphicsOutput->Blt( in graphics_splash()
296 GraphicsOutput, (EFI_GRAPHICS_OUTPUT_BLT_PIXEL *)background, in graphics_splash()
298 GraphicsOutput->Mode->Info->HorizontalResolution, in graphics_splash()
299 GraphicsOutput->Mode->Info->VerticalResolution, 0); in graphics_splash()
306 err = GraphicsOutput->Blt( in graphics_splash()
307 GraphicsOutput, blt, in graphics_splash()
321 return GraphicsOutput->Blt( in graphics_splash()
322 GraphicsOutput, blt, in graphics_splash()