moved over the polyfiller code and implemented blending
[bootcensus] / src / census / census.h
diff --git a/src/census/census.h b/src/census/census.h
new file mode 100644 (file)
index 0000000..97fa353
--- /dev/null
@@ -0,0 +1,12 @@
+#ifndef CENSUS_H_
+#define CENSUS_H_
+
+#include <inttypes.h>
+
+int fb_width, fb_height;
+uint32_t *fb_pixels;
+
+void init_census(void *pixels, int xsz, int ysz);
+void draw_census(void);
+
+#endif /* CENSUS_H_ */