mirror of
https://github.com/AsahiLinux/m1n1
synced 2024-12-19 10:13:10 +00:00
8af9f1eb95
Signed-off-by: Hector Martin <marcan@marcan.st>
17 lines
305 B
C
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
|