clray

annotate src/rt.h @ 15:754faf15ba36

burp
author John Tsiombikas
date Sun, 08 Aug 2010 09:51:45 +0100
parents 407935b73af3
children 63a6b46f58a0
rev   line source
nuclear@3 1 #ifndef RT_H_
nuclear@3 2 #define RT_H_
nuclear@3 3
nuclear@13 4 #include "mesh.h"
nuclear@13 5
nuclear@13 6 bool init_renderer(int xsz, int ysz, Scene *scn);
nuclear@3 7 void destroy_renderer();
nuclear@3 8 bool render();
nuclear@12 9 void set_xform(float *matrix, float *invtrans);
nuclear@12 10
John@15 11 void dbg_set_dbg(int dbg);
nuclear@13 12 void dbg_render_gl(Scene *scn);
nuclear@3 13
nuclear@3 14 #endif /* RT_H_ */