From b807174fecacf4c9f8400cab4d6fb3f580284021 Mon Sep 17 00:00:00 2001 From: Gerd Hoffmann Date: Fri, 22 Apr 2022 14:41:18 +0200 Subject: MdeModulePkg/GraphicsConsoleDxe: add modes Add modes for a few common display resolutions higher than 800x600, specifically 1024x768, 1280x800 and 1920x1080, so ConSplitterDxe has more options available. The mode list is not use as-is, InitializeGraphicsConsoleTextMode() will check the list and filter out any modes which don't fit to the screen, so this will also work fine for small displays. Signed-off-by: Gerd Hoffmann Reviewed-by: Liming Gao Reviewed-by: Ard Biesheuvel --- MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsole.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'MdeModulePkg') diff --git a/MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsole.c b/MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsole.c index 07436cbd15..b895dafede 100644 --- a/MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsole.c +++ b/MdeModulePkg/Universal/Console/GraphicsConsoleDxe/GraphicsConsole.c @@ -40,7 +40,10 @@ GRAPHICS_CONSOLE_DEV mGraphicsConsoleDevTemplate = { }; GRAPHICS_CONSOLE_MODE_DATA mGraphicsConsoleModeData[] = { - { 100, 31 }, + { 100, 31 }, // 800 x 600 + { 128, 40 }, // 1024 x 768 + { 160, 42 }, // 1280 x 800 + { 240, 56 }, // 1920 x 1080 // // New modes can be added here. // The last entry is specific for full screen mode. -- cgit v1.2.3