File: texture.h

package info (click to toggle)
gle 3.1.0-7
  • links: PTS
  • area: main
  • in suites: squeeze, wheezy
  • size: 3,076 kB
  • ctags: 1,029
  • sloc: ansic: 10,002; sh: 8,455; makefile: 366; python: 102
file content (34 lines) | stat: -rw-r--r-- 604 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34

/*
 * texture.h
 *
 * FUNCTION:
 * texture mapping hack
 *
 * HISTORY:
 * Created by Linas Vepstas April 1994
 */

typedef struct {
   int size;
   unsigned char * pixmap;
} Texture;

extern Texture * current_texture;

extern Texture * planet_texture;
extern Texture * check_texture;
extern Texture * barberpole_texture;
extern Texture * wild_tooth_texture;
extern Texture * reaction_texture;

extern void (*texanim) (int);
extern void (*reaction_texanim) (int);

extern void setup_textures (void);

extern void TextureStyle (int msg); 



/* ================== END OF FILE ========================= */