m1n1/src/fb.h
Hector Martin 8af9f1eb95 Initial commit
Signed-off-by: Hector Martin <marcan@marcan.st>
2021-01-15 04:03:35 +09:00

17 lines
305 B
C

/* SPDX-License-Identifier: MIT */
#ifndef FB_H
#define FB_H
#include "types.h"
extern u32 *fb;
extern int fb_s, fb_w, fb_h;
void fb_init(void);
void fb_blit(int x, int y, int w, int h, void *data, int stride);
void fb_fill(int x, int y, int w, int h, u32 color);
void fb_display_logo(void);
#endif