gba-x3dtest

view src/polyfill.h @ 6:73b5f2e5d18a

first triangle on screen
author John Tsiombikas <nuclear@member.fsf.org>
date Wed, 18 Jun 2014 04:13:02 +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_ */