qvolray

view src/volume.h @ 10:9d2396738b60

GL_RGBA32F -> GL_RGBA32F_ARB
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 08 Apr 2012 14:31:03 +0300
parents ae10631bb11b
children 8990b5d2c7fe
line source
1 #ifndef VOLUME_H_
2 #define VOLUME_H_
4 #include <stdint.h>
6 struct volume {
7 int sz[3];
8 float zaspect;
9 unsigned int tex_vol;
10 };
12 struct volume *load_volume(const char *fname);
13 void free_volume(struct volume *vol);
15 #endif /* VOLUME_H_ */