haiku/headers/private/kernel/boot/platform/generic
Fredrik Holmqvist 04cbc2588e Use fast clearing of visible screen for splash
memset uses rep stosb on x86 during boot, with memory
not set to write-combining, which makes it slow.

Instead we do aligned writes of 2 x four bytes at once.
Only clear the minimum of size and width * height * 4
UEFI framebuffer size can be huge, upto 512MB here,
and rep stosb seems to be around 25-30MB/s

This is written as generic as possible to work on
old compilers and different platforms, without
expecting boot memset to be optimized.

This makes it almost unnoticable compared to not
clearing.
2018-08-03 13:40:04 +02:00
..
text_console.h * Implement support for user input of additional safe mode options that 2011-05-19 01:38:02 +00:00
text_menu.h * Slightly alter the semantics of the input gathering function to take the 2011-05-24 03:21:51 +00:00
video.h Use fast clearing of visible screen for splash 2018-08-03 13:40:04 +02:00