dbf-udg

view src/texture.h @ 4:5fb21401b7c8

lala
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 07 Feb 2013 18:52:28 +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_ */