Home | History | Annotate | Download | only in apps

Lines Matching defs:gop

31 draw_boxes(EFI_GRAPHICS_OUTPUT_PROTOCOL *gop)
40 if (gop->Mode) {
41 imax = gop->Mode->MaxMode;
43 Print(L"gop->Mode is NULL\n");
49 rc = uefi_call_wrapper(gop->QueryMode, 4, gop, i, &SizeOfInfo,
52 Print(L"gop->QueryMode() returned %r\n", rc);
53 Print(L"Trying to start GOP with SetMode().\n");
54 rc = uefi_call_wrapper(gop->SetMode, 2, gop,
55 gop->Mode ? gop->Mode->Mode : 0);
56 rc = uefi_call_wrapper(gop->QueryMode, 4, gop, i,
66 if (CompareMem(info, gop->Mode->Info, sizeof (*info)))
82 uefi_call_wrapper(gop->Blt, 10, gop,
113 EFI_GRAPHICS_OUTPUT_PROTOCOL *gop;
119 rc = LibLocateProtocol(&GraphicsOutputProtocol, (void **)&gop);
121 Print(L"Could not locate GOP: %r\n", rc);
125 if (!gop) {
126 Print(L"LocateProtocol(GOP, &gop) returned %r but GOP is NULL\n", rc);
130 draw_boxes(gop);