3dphotoshoot
view src/texture.h @ 18:dccbd7d65517
moved to android-19 to make it work with android 4.x
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Wed, 10 Jun 2015 18:53:28 +0300 |
parents | |
children | 4ca4e3c5a754 |
line source
1 #ifndef TEXTURE_H_
2 #define TEXTURE_H_
4 struct texture {
5 unsigned int texid;
6 int width, height;
7 int img_width, img_height; /* in case we have a smaller image in a pow2 texture */
8 };
10 int load_texture(struct texture *tex, const char *fname);
11 struct texture *get_texture(const char *fname);
13 int gen_debug_texture(struct texture *tex);
15 #endif /* TEXTURE_H_ */