blob: 274bc315b194d64537e3e0cfd6bb7e23a8687175 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#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, 0xFF0000);
while(1){}
return 0;
}
|