summaryrefslogtreecommitdiff
path: root/examples/red.c
blob: 8240cf48f686356b5f07c7d2c072265f91f4b1bd (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(void)
{
	fbgl_t fb;
	fbgl_init("/dev/fb0", &fb);
	fbgl_set_bg(&fb, 0x00FF0000);
	while (1) {
	}

	return 0;
}