qvolray

view src/volume.h @ 9:a6765984e057

moved the volume loading to volume.c
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 08 Apr 2012 07:11:54 +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_ */