gba-x3dtest

view src/polyfill.h @ 5:850be43b3135

sdl version
author John Tsiombikas <nuclear@member.fsf.org>
date Mon, 16 Jun 2014 22:01:45 +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_ */