gba-x3dtest

diff 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 diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/polyfill.h	Mon Jun 16 22:01:45 2014 +0300
     1.3 @@ -0,0 +1,12 @@
     1.4 +#ifndef POLYFILL_H_
     1.5 +#define POLYFILL_H_
     1.6 +
     1.7 +#include <stdint.h>
     1.8 +
     1.9 +typedef struct pvec3 {
    1.10 +	int32_t x, y, z;
    1.11 +} pvec3;
    1.12 +
    1.13 +void draw_poly(int num, const pvec3 *verts, uint16_t color);
    1.14 +
    1.15 +#endif	/* POLYFILL_H_ */