gba-x3dtest

view src/polyfill.h @ 8:fb0a0d6a8b52

sortof works
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 19 Jun 2014 05:53:46 +0300
parents 850be43b3135
children b755fb002f17
line source
1 #ifndef POLYFILL_H_
2 #define POLYFILL_H_
4 #include <stdint.h>
6 typedef struct pvec3 {
7 int32_t x, y, z;
8 } pvec3;
10 void draw_poly(int num, const pvec3 *verts, uint16_t color);
12 void draw_point(const pvec3 *v, uint16_t color);
14 #endif /* POLYFILL_H_ */