blob: 3809813c9874d165992f380c6c95fadeeebcb413 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#define FBGL_IMPLEMENTATION
#include "../fbgl.h"
#include <stdio.h>
int main(int argc, char *argv[])
{
fbgl_t fb;
fbgl_init("/dev/fb0", &fb);
fbgl_set_bg(&fb, 0x00FF0000);
while (1) {
}
return 0;
}
|