blob: 7f64dbd46042b75d67936125495cdb83618d5892 (
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, 0xFF0000);
while (1) {
}
return 0;
}
|