mirror of
https://github.com/ivoszbg/uniLoader.git
synced 2024-11-10 06:00:07 +00:00
Quicken fb cleaning
Greatly improves boot time of uniLoader itself
This commit is contained in:
parent
108caaa77f
commit
2440f68920
@ -10,8 +10,7 @@
|
||||
#include <string.h>
|
||||
|
||||
void clean_fb(volatile char *fb, int width, int height, int stride) {
|
||||
for (volatile char *addr = fb; addr < fb + (width * height * stride); addr += stride)
|
||||
*(int*)(addr) = 0x0;
|
||||
memset(fb, 0x0, (width * height * stride));
|
||||
}
|
||||
|
||||
/* RGB888 format */
|
||||
|
Loading…
Reference in New Issue
Block a user