Hello,
I am currently making a UEFI loader and have enumerated the GOP to find video modes. I know on VESA use use BIOS ints to access EDID to get monitor info. What is the equivalent on UEFI?
Thanks,
nexos
EDID on UEFI
Re: EDID on UEFI
Code: Select all
EFI_EDID_ACTIVE_PROTOCOL
Code: Select all
EFI_EDID_ACTIVE_PROTOCOL* edid = nullptr;
m_bootServices->HandleProtocol(handleGraphicsOutputProtocol, &g_efiEdidActiveProtocolGuid, (void**)&edid));