-
@timmrgn @horowitz_idan In a way, yes! On bare metal, we rely on Multiboot handing us a framebuffer, which is configured here: github.com/SerenityOS/serenity/blob/585edb8cff5451cfeb057fe8c3317712965d89b6/Kernel/Prekernel/Arch/x86/multiboot.S#L26-L27 Unfortunately, that doesn't support arbitrary sizes but relies on VESA BIOS Extensions (VBE) - I checked in grub with vbeinfo, and 1280x1024 also...
-
@timmrgn @horowitz_idan ...happens to be the largest supported resolution on this machine, so I didn't bother changing it. (Well, I tried, and it gave me 640x480 instead 😂) See also: github.com/SerenityOS/serenity/issues/4414