clray

view src/rt.h @ 43:f9eec11e5acc

shoehorned the kdtree into an opnecl image and improved performance slightly
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 28 Aug 2010 09:38:49 +0100
parents 8b2f2ad14ae7
children 30bf84881553
line source
1 #ifndef RT_H_
2 #define RT_H_
4 #include "scene.h"
6 bool init_renderer(int xsz, int ysz, Scene *scn, unsigned int tex);
7 void destroy_renderer();
8 bool render();
9 void set_xform(float *matrix, float *invtrans);
11 void dbg_render_gl(Scene *scn, bool show_tree = false, bool show_obj = true);
13 #endif /* RT_H_ */