blob: c1680c4d805c87e9f48e58e578b5225cd6c35758 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
#include <stdint.h>
struct fb_info {
char *b;
uint32_t width, height;
uint32_t pitch; /* width in bytes of a single scanline */
uint8_t bpp;
};
void video_init(struct fb_info);
|