13 lines
275 B
C
13 lines
275 B
C
#ifndef FBDEV_H
|
|
#define FBDEV_H
|
|
|
|
#include <stdint.h>
|
|
|
|
int fbdev_init(const char *dev_path);
|
|
void fbdev_exit(void);
|
|
void fbdev_flush(int32_t x1, int32_t y1, int32_t x2, int32_t y2, const void *color_p);
|
|
uint32_t fbdev_get_width(void);
|
|
uint32_t fbdev_get_height(void);
|
|
|
|
#endif
|