dbf-udg

view src/texture.h @ 7:603656331514

phong blobs
author John Tsiombikas <nuclear@member.fsf.org>
date Mon, 18 Feb 2013 05:44:17 +0200
parents
children
line source
1 #ifndef TEXTURE_H_
2 #define TEXTURE_H_
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
8 unsigned int load_texture(const char *fname);
9 void free_texture(unsigned int tex);
11 #ifdef __cplusplus
12 }
13 #endif
15 #endif /* TEXTURE_H_ */