moved over the polyfiller code and implemented blending
[bootcensus] / src / census / census.h
1 #ifndef CENSUS_H_
2 #define CENSUS_H_
3
4 #include <inttypes.h>
5
6 int fb_width, fb_height;
7 uint32_t *fb_pixels;
8
9 void init_census(void *pixels, int xsz, int ysz);
10 void draw_census(void);
11
12 #endif  /* CENSUS_H_ */