clray

view src/rt.h @ 12:85fd61f374d9

fixed the bloody intersection bug
author John Tsiombikas <nuclear@member.fsf.org>
date Tue, 03 Aug 2010 13:06:59 +0100
parents deaf85acf6af
children 407935b73af3
line source
1 #ifndef RT_H_
2 #define RT_H_
4 bool init_renderer(int xsz, int ysz);
5 void destroy_renderer();
6 bool render();
7 void set_xform(float *matrix, float *invtrans);
9 void dbg_render_gl();
11 #endif /* RT_H_ */