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