gba-x3dtest

view src/polyfill.h @ 7:158d23956801

started adding rendering pipeline stuff
author John Tsiombikas <nuclear@member.fsf.org>
date Wed, 18 Jun 2014 06:20:07 +0300
parents
children fb0a0d6a8b52
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 #endif /* POLYFILL_H_ */