qvolray
annotate src/volray.h @ 15:a2080cc27ebc
made -std=c++0x addition to CFLAGS conditional
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Wed, 11 Apr 2012 01:00:21 +0300 |
parents | 981fef9aa1be |
children | 3d05c261a2f4 |
rev | line source |
---|---|
nuclear@12 | 1 #ifndef VOLRAY_H_ |
nuclear@12 | 2 #define VOLRAY_H_ |
nuclear@12 | 3 |
nuclear@13 | 4 #include "volume.h" |
nuclear@13 | 5 |
nuclear@12 | 6 bool volray_init(); |
nuclear@13 | 7 void volray_setvolume(const Volume *vol); |
nuclear@12 | 8 void volray_resize(int xsz, int ysz); |
nuclear@12 | 9 void volray_draw(); |
nuclear@12 | 10 |
nuclear@13 | 11 void volray_mouse(int bn, int state, int x, int y); |
nuclear@13 | 12 void volray_motion(int x, int y); |
nuclear@13 | 13 |
nuclear@12 | 14 #endif // VOLRAY_H_ |