clray

annotate 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
rev   line source
nuclear@3 1 #ifndef RT_H_
nuclear@3 2 #define RT_H_
nuclear@3 3
nuclear@12 4 bool init_renderer(int xsz, int ysz);
nuclear@3 5 void destroy_renderer();
nuclear@3 6 bool render();
nuclear@12 7 void set_xform(float *matrix, float *invtrans);
nuclear@12 8
nuclear@12 9 void dbg_render_gl();
nuclear@3 10
nuclear@3 11 #endif /* RT_H_ */