clray

view src/rt.h @ 25:58642a8316b7

continuing with the kdtree
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 14 Aug 2010 07:00:04 +0100
parents 63a6b46f58a0
children 8b2f2ad14ae7
line source
1 #ifndef RT_H_
2 #define RT_H_
4 #include "scene.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_ */