intravenous

view src/geom.h @ 1:3ea290d35984

it's never going to finish but wth :)
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 21 Apr 2012 22:42:43 +0300
parents
children 94d4c60af435
line source
1 #ifndef GEOM_H_
2 #define GEOM_H_
4 #include "opengl.h"
5 #include <vmath/vmath.h>
7 struct Vertex {
8 Vector3 pos, norm, tang;
9 Vector2 tc;
10 };
12 void draw_mesh(unsigned int prim, int count, const Vertex *vbuf, const unsigned int *ibuf);
14 #endif // GEOM_H_