mirror of
https://github.com/ivoszbg/uniLoader.git
synced 2024-11-22 03:55:19 +00:00
lib: simplefb: simplify cleaning framebuffer
Pretty self-explanatory, it's faster as well. Suggested-by: Umer Uddin <umer.uddin@mentallysanemainliners.org> Signed-off-by: Ivaylo Ivanov <ivo.ivanov.ivanov1@gmail.com>
This commit is contained in:
parent
3ab64bed39
commit
69c7156eb3
@ -10,8 +10,7 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
void clean_fb(volatile char *fb, int width, int height, int stride) {
|
void clean_fb(volatile char *fb, int width, int height, int stride) {
|
||||||
for (volatile char *addr = fb; addr < fb + (width * height * stride); addr += stride)
|
memset(fb, 0x0, (width * height * stride));
|
||||||
*(int*)(addr) = 0x0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* RGB888 format */
|
/* RGB888 format */
|
||||||
|
Loading…
Reference in New Issue
Block a user