clray

view src/rt.h @ 14:29f9330cfa4b

trying to debug the bloody thing
author John Tsiombikas
date Sat, 07 Aug 2010 03:36:36 +0100
parents 85fd61f374d9
children 754faf15ba36
line source
1 #ifndef RT_H_
2 #define RT_H_
4 #include "mesh.h"
6 bool init_renderer(int xsz, int ysz, Scene *scn);
7 void destroy_renderer();
8 bool render();
9 void set_xform(float *matrix, float *invtrans);
11 void dbg_render_gl(Scene *scn);
13 #endif /* RT_H_ */