dos3d

changeset 7:3239511d1a76

random change
author John Tsiombikas <nuclear@member.fsf.org>
date Mon, 21 Nov 2011 12:12:23 +0200
parents 7f12c7d084d5
children 569d62294ae3
files src/texture.h
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line diff
     1.1 --- a/src/texture.h	Mon Nov 21 12:11:41 2011 +0200
     1.2 +++ b/src/texture.h	Mon Nov 21 12:12:23 2011 +0200
     1.3 @@ -33,9 +33,9 @@
     1.4  struct texture *load_texture(const char *fname);
     1.5  void free_texture(struct texture *tex);
     1.6  
     1.7 -struct texture *tex_gen_checker(int xsz, int ysz, int usub, int vsub, int c1, int c2);
     1.8 -
     1.9  unsigned char *get_texture_pixels(struct texture *tex);
    1.10  int find_texture_color(struct texture *tex, int r, int g, int b);
    1.11  
    1.12 +struct texture *tex_gen_checker(int xsz, int ysz, int usub, int vsub, int c1, int c2);
    1.13 +
    1.14  #endif	/* TEXTURE_H_ */